-- MySQL dump 10.16  Distrib 10.2.14-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: evergr67_wp13
-- ------------------------------------------------------
-- Server version	10.2.14-MariaDB-log

/*!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 utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp9z_commentmeta`
--

DROP TABLE IF EXISTS `wp9z_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9z_commentmeta`
--

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

--
-- Table structure for table `wp9z_comments`
--

DROP TABLE IF EXISTS `wp9z_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_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_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_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_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `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=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9z_comments`
--

LOCK TABLES `wp9z_comments` WRITE;
/*!40000 ALTER TABLE `wp9z_comments` DISABLE KEYS */;
INSERT INTO `wp9z_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2019-04-13 15:54:33','2019-04-13 15:54:33','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,'post-trashed','','',0,0);
/*!40000 ALTER TABLE `wp9z_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_links`
--

DROP TABLE IF EXISTS `wp9z_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_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_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9z_links`
--

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

--
-- Table structure for table `wp9z_options`
--

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

--
-- Dumping data for table `wp9z_options`
--

LOCK TABLES `wp9z_options` WRITE;
/*!40000 ALTER TABLE `wp9z_options` DISABLE KEYS */;
INSERT INTO `wp9z_options` VALUES (1,'siteurl','https://test.evergreenwellness.com','yes'),(2,'home','https://test.evergreenwellness.com','yes'),(3,'blogname','Evergreen Wellness Center','yes'),(4,'blogdescription','May you have a good health and longevity … like the evergreen','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@evergreenwellness.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(29,'rewrite_rules','a:91:{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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=837&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s: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: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: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:3:{i:0;s:36:\"contact-form-7/wp-contact-form-7.php\";i:1;s:23:\"elementor/elementor.php\";i:2;s:43:\"themeisle-companion/themeisle-companion.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','neve','yes'),(41,'stylesheet','neve','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','44719','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";s:1:\"0\";s:12:\"hierarchical\";s:1:\"0\";s:8:\"dropdown\";s:1:\"0\";}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:3:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:25:\"Evergreen Wellness Center\";s:4:\"text\";s:119:\"<strong>Phone:</strong> (316) 691 - 8811\r\n\r\n<strong>Address:</strong> 1520 S. Webb Road, Suite 160\r\n\r\nWichita, KS 67207\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(84,'page_on_front','837','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','1086','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'initial_db_version','44719','yes'),(94,'wp9z_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(95,'fresh_site','0','yes'),(96,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";s:1:\"5\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:3:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";s:1:\"0\";s:8:\"dropdown\";s:1:\"0\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"nav_menu-6\";i:1;s:10:\"nav_menu-8\";i:2;s:11:\"nav_menu-12\";}s:12:\"blog-sidebar\";a:10:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";i:6;s:14:\"recent-posts-3\";i:7;s:17:\"recent-comments-3\";i:8;s:10:\"archives-3\";i:9;s:12:\"categories-3\";}s:12:\"shop-sidebar\";a:0:{}s:18:\"footer-one-widgets\";a:1:{i:0;s:10:\"nav_menu-3\";}s:18:\"footer-two-widgets\";a:1:{i:0;s:11:\"nav_menu-10\";}s:20:\"footer-three-widgets\";a:1:{i:0;s:6:\"text-3\";}s:19:\"footer-four-widgets\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(102,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_nav_menu','a:7:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:8:\"nav_menu\";i:11;}i:5;a:1:{s:8:\"nav_menu\";i:9;}i:6;a:1:{s:5:\"title\";s:10:\"Footer Two\";}i:8;a:1:{s:8:\"nav_menu\";i:10;}i:10;a:1:{s:8:\"nav_menu\";i:12;}i:12;a:1:{s:8:\"nav_menu\";i:11;}}','yes'),(110,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'cron','a:6:{i:1556204073;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:1556207673;a:3:{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:1556207727;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:1556207730;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:1556236792;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;}}}s:7:\"version\";i:2;}','yes'),(119,'theme_mods_twentynineteen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1555172241;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}}}}','yes'),(113,'_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.1.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.1.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"5.1.1\";s:7:\"version\";s:5:\"5.1.1\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.0\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1556170630;s:15:\"version_checked\";s:5:\"5.1.1\";s:12:\"translations\";a:0:{}}','no'),(822,'_site_transient_timeout_theme_roots','1556172431','no'),(823,'_site_transient_theme_roots','a:2:{s:4:\"neve\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";}','no'),(120,'smm_version','1.3.1','yes'),(121,'disable_smm','0','yes'),(122,'wpforms_shareasale_id','1587694','yes'),(124,'widget_wpforms-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(126,'boldgrid_settings','a:2:{s:7:\"library\";a:1:{s:35:\"boldgrid-backup/boldgrid-backup.php\";s:7:\"2.7.7.0\";}s:15:\"plugins_checked\";a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:1:{s:5:\"1.8.0\";i:1555171275;}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:1:{s:5:\"1.1.0\";i:1555171275;}}}','yes'),(127,'boldgrid_backup_id','0ed70035','no'),(131,'_site_transient_boldgrid_plugins_filtered','a:2:{s:35:\"boldgrid-backup/boldgrid-backup.php\";a:11:{s:4:\"Name\";s:15:\"BoldGrid Backup\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.8.0\";s:11:\"Description\";s:81:\"BoldGrid Backup provides WordPress backup and restoration with update protection.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:15:\"BoldGrid Backup\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";a:11:{s:4:\"Name\";s:23:\"BoldGrid Backup Premium\";s:9:\"PluginURI\";s:41:\"https://www.boldgrid.com/boldgrid-backup/\";s:7:\"Version\";s:5:\"1.1.0\";s:11:\"Description\";s:49:\"Premium extension for the BoldGrid Backup plugin.\";s:6:\"Author\";s:8:\"BoldGrid\";s:9:\"AuthorURI\";s:25:\"https://www.boldgrid.com/\";s:10:\"TextDomain\";s:15:\"boldgrid-backup\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:23:\"BoldGrid Backup Premium\";s:10:\"AuthorName\";s:8:\"BoldGrid\";}}','no'),(134,'do_activate','0','yes'),(136,'_transient_timeout_jetpack_file_data_7.1.1','1557676528','no'),(137,'_transient_jetpack_file_data_7.1.1','a:62:{s:32:\"c22c48d7cfe9d38dff2864cfea64636a\";a:15:{s:4:\"name\";s:20:\"Spelling and Grammar\";s:11:\"description\";s:39:\"Check your spelling, style, and grammar\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"6\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:115:\"after the deadline, afterthedeadline, spell, spellchecker, spelling, grammar, proofreading, style, language, cliche\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"933d4f6d290580156e0652ce850af1b2\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"fb5c4814ddc3946a3f22cc838fcb2af3\";a:15:{s:4:\"name\";s:8:\"Carousel\";s:11:\"description\";s:75:\"Display images and galleries in a gorgeous, full-screen browsing experience\";s:14:\"jumpstart_desc\";s:79:\"Brings your photos and images to life as full-size, easily navigable galleries.\";s:4:\"sort\";s:2:\"22\";s:20:\"recommendation_order\";s:2:\"12\";s:10:\"introduced\";s:3:\"1.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:80:\"gallery, carousel, diaporama, slideshow, images, lightbox, exif, metadata, image\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5813eda53235a9a81a69b1f6a4a15db6\";a:15:{s:4:\"name\";s:13:\"Comment Likes\";s:11:\"description\";s:64:\"Increase visitor engagement by adding a Like button to comments.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"39\";s:20:\"recommendation_order\";s:2:\"17\";s:10:\"introduced\";s:3:\"5.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:37:\"like widget, like button, like, likes\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7ef4ca32a1c84fc10ef50c8293cae5df\";a:15:{s:4:\"name\";s:8:\"Comments\";s:11:\"description\";s:80:\"Let readers use WordPress.com, Twitter, Facebook, or Google+ accounts to comment\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"20\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:53:\"comments, comment, facebook, twitter, google+, social\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"c5331bfc2648dfeeebe486736d79a72c\";a:15:{s:4:\"name\";s:12:\"Contact Form\";s:11:\"description\";s:81:\"Add a customizable contact form to any post or page using the Jetpack Form Block.\";s:14:\"jumpstart_desc\";s:111:\"Adds a button to your post and page editors, allowing you to build simple forms to help visitors stay in touch.\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:3:\"1.3\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:18:\"Writing, Jumpstart\";s:25:\"additional_search_queries\";s:214:\"contact, form, grunion, feedback, submission, contact form, email, feedback, contact form plugin, custom form, custom form plugin, form builder, forms, form maker, survey, contact by jetpack, contact us, forms free\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"275642ae868612fff9f668ce23aef464\";a:15:{s:4:\"name\";s:9:\"Copy Post\";s:11:\"description\";s:53:\"Copy an existing post\'s content into a new draft post\";s:14:\"jumpstart_desc\";s:53:\"Copy an existing post\'s content into a new draft post\";s:4:\"sort\";s:2:\"15\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"7.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:15:\"copy, duplicate\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"707c77d2e8cb0c12d094e5423c8beda8\";a:15:{s:4:\"name\";s:20:\"Custom content types\";s:11:\"description\";s:74:\"Display different types of content on your site with custom content types.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:72:\"cpt, custom post types, portfolio, portfolios, testimonial, testimonials\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"cd499b1678cfe3aabfc8ca0d3eb7e8b9\";a:15:{s:4:\"name\";s:10:\"Custom CSS\";s:11:\"description\";s:53:\"Tweak your site’s CSS without modifying your theme.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"2\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.7\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:108:\"css, customize, custom, style, editor, less, sass, preprocessor, font, mobile, appearance, theme, stylesheet\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d266d6546645f42cf52a66387699c50\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d436678d5e010ac6b0f157aa1021554\";a:15:{s:4:\"name\";s:21:\"Enhanced Distribution\";s:11:\"description\";s:27:\"Increase reach and traffic.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"5\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"google, seo, firehose, search, broadcast, broadcasting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c9ff765b826940496a65c0f927a594a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"092b94702bb483a5472578283c2103d6\";a:15:{s:4:\"name\";s:16:\"Google Analytics\";s:11:\"description\";s:56:\"Set up Google Analytics without touching a line of code.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"37\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"4.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:37:\"webmaster, google, analytics, console\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"6bd77e09440df2b63044cf8cb7963773\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"ee1a10e2ef5733ab19eb1eb552d5ecb3\";a:15:{s:4:\"name\";s:19:\"Gravatar Hovercards\";s:11:\"description\";s:58:\"Enable pop-up business cards over commenters’ Gravatars.\";s:14:\"jumpstart_desc\";s:131:\"Let commenters link their profiles to their Gravatar accounts, making it easy for your visitors to learn more about your community.\";s:4:\"sort\";s:2:\"11\";s:20:\"recommendation_order\";s:2:\"13\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:20:\"gravatar, hovercards\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"284c08538b0bdc266315b2cf80b9c044\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0ce5c3ac630dea9f41215e48bb0f52f3\";a:15:{s:4:\"name\";s:15:\"Infinite Scroll\";s:11:\"description\";s:53:\"Automatically load new content when a visitor scrolls\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:33:\"scroll, infinite, infinite scroll\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"87da2858d4f9cadb6a44fdcf32e8d2b5\";a:15:{s:4:\"name\";s:8:\"JSON API\";s:11:\"description\";s:51:\"Allow applications to securely access your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"19\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:19:\"Writing, Developers\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:50:\"api, rest, develop, developers, json, klout, oauth\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"004962cb7cb9ec2b64769ac4df509217\";a:15:{s:4:\"name\";s:14:\"Beautiful Math\";s:11:\"description\";s:57:\"Use LaTeX markup for complex equations and other geekery.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"12\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:47:\"latex, math, equation, equations, formula, code\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7f408184bee8850d439c01322867e72c\";a:15:{s:4:\"name\";s:11:\"Lazy Images\";s:11:\"description\";s:137:\"Speed up your site and create a smoother viewing experience by loading images as visitors scroll down the screen, instead of all at once.\";s:14:\"jumpstart_desc\";s:164:\"Lazy-loading images improve your site\'s speed and create a smoother viewing experience. Images will load as visitors scroll down the screen, instead of all at once.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:2:\"14\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:23:\"Appearance, Recommended\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:150:\"mobile, theme, fast images, fast image, image, lazy, lazy load, lazyload, images, lazy images, thumbnail, image lazy load, lazy loading, load, loading\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ad914b747f382ae918ed3b37077d4a1\";a:15:{s:4:\"name\";s:5:\"Likes\";s:11:\"description\";s:63:\"Give visitors an easy way to show they appreciate your content.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"23\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:26:\"like, likes, wordpress.com\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b347263e3470979442ebf0514e41e893\";a:15:{s:4:\"name\";s:6:\"Manage\";s:11:\"description\";s:54:\"Manage all of your sites from a centralized dashboard.\";s:14:\"jumpstart_desc\";s:151:\"Helps you remotely manage plugins, turn on automated updates, and more from <a href=\"https://wordpress.com/plugins/\" target=\"_blank\">wordpress.com</a>.\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"3\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:35:\"Centralized Management, Recommended\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:26:\"manage, management, remote\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"589982245aa6f495b72ab7cf57a1a48e\";a:15:{s:4:\"name\";s:8:\"Markdown\";s:11:\"description\";s:50:\"Write posts or pages in plain-text Markdown syntax\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"31\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:12:\"md, markdown\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d3bec8e063d637bc285018241b783725\";a:15:{s:4:\"name\";s:21:\"WordPress.com Toolbar\";s:11:\"description\";s:91:\"Replaces the admin bar with a useful toolbar to quickly manage your site via WordPress.com.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"16\";s:10:\"introduced\";s:3:\"4.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:7:\"General\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:19:\"adminbar, masterbar\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6ab1c3e749bcfba2dedbaebe6c9fc614\";a:15:{s:4:\"name\";s:12:\"Mobile Theme\";s:11:\"description\";s:31:\"Enable the Jetpack Mobile theme\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"21\";s:20:\"recommendation_order\";s:2:\"11\";s:10:\"introduced\";s:3:\"1.8\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:31:\"Appearance, Mobile, Recommended\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:24:\"mobile, theme, minileven\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"b7be7da643ec641511839ecc6afb6def\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d54f83ff429a8a37ace796de98459411\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0f8b373fa12c825162c0b0bc20b8bbdd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5d7b0750cb34a4a72a44fa67790de639\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"f07fde8db279ffb0116c727df72c6374\";a:15:{s:4:\"name\";s:7:\"Monitor\";s:11:\"description\";s:118:\"Jetpack’s downtime monitoring will continuously watch your site, and alert you the moment that downtime is detected.\";s:14:\"jumpstart_desc\";s:61:\"Receive immediate notifications if your site goes down, 24/7.\";s:4:\"sort\";s:2:\"28\";s:20:\"recommendation_order\";s:2:\"10\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:123:\"monitor, uptime, downtime, monitoring, maintenance, maintenance mode, offline, site is down, site down, down, repair, error\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"136a5445a49150db75472862f3d3aefb\";a:15:{s:4:\"name\";s:13:\"Notifications\";s:11:\"description\";s:57:\"Receive instant notifications of site comments and likes.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:5:\"Other\";s:7:\"feature\";s:7:\"General\";s:25:\"additional_search_queries\";s:62:\"notification, notifications, toolbar, adminbar, push, comments\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"395d8ae651afabb54d1e98440674b384\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0b7b5e3ff80355a67c5485b0d00cd1a2\";a:15:{s:4:\"name\";s:9:\"Asset CDN\";s:11:\"description\";s:154:\"Jetpack’s Site Accelerator loads your site faster by optimizing your images and serving your images and static files from our global network of servers.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"26\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"6.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:23:\"Recommended, Appearance\";s:25:\"additional_search_queries\";s:160:\"site accelerator, accelerate, static, assets, javascript, css, files, performance, seo, bandwidth, content delivery network, pagespeed, combine js, optimize css\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4484ac68583fbbaab0ef698cdc986950\";a:15:{s:4:\"name\";s:9:\"Image CDN\";s:11:\"description\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:14:\"jumpstart_desc\";s:141:\"Mirrors and serves your images from our free and fast image CDN, improving your site’s performance with no additional load on your servers.\";s:4:\"sort\";s:2:\"25\";s:20:\"recommendation_order\";s:1:\"1\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:42:\"Photos and Videos, Appearance, Recommended\";s:7:\"feature\";s:34:\"Recommended, Jumpstart, Appearance\";s:25:\"additional_search_queries\";s:171:\"photon, photo cdn, image cdn, speed, compression, resize, responsive images, responsive, content distribution network, optimize, page speed, image optimize, photon jetpack\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"509aac35e28ac722a331f67613cd27ec\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"6f30193afa5b1360e3fa2676501b5e3a\";a:15:{s:4:\"name\";s:13:\"Post by email\";s:11:\"description\";s:33:\"Publish posts by sending an email\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"14\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:7:\"Writing\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:20:\"post by email, email\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"3e9f8bd3755d92e8e5d06966a957beb8\";a:15:{s:4:\"name\";s:7:\"Protect\";s:11:\"description\";s:135:\"Protect yourself from brute force and distributed brute force attacks, which are the most common way for hackers to get into your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"4\";s:10:\"introduced\";s:3:\"3.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:8:\"Security\";s:25:\"additional_search_queries\";s:173:\"security, jetpack protect, secure, protection, botnet, brute force, protect, login, bot, password, passwords, strong passwords, strong password, wp-login.php,  protect admin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"0cacc8ab2145ad11cb54d181a98aa550\";a:15:{s:4:\"name\";s:9:\"Publicize\";s:11:\"description\";s:128:\"Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"10\";s:20:\"recommendation_order\";s:1:\"7\";s:10:\"introduced\";s:3:\"2.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:220:\"facebook, jetpack publicize, twitter, tumblr, linkedin, social, tweet, connections, sharing, social media, automated, automated sharing, auto publish, auto tweet and like, auto tweet, facebook auto post, facebook posting\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"a528c2f803a92c5c2effa67cd33ab33a\";a:15:{s:4:\"name\";s:20:\"Progressive Web Apps\";s:11:\"description\";s:85:\"Speed up and improve the reliability of your site using the latest in web technology.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"38\";s:20:\"recommendation_order\";s:2:\"18\";s:10:\"introduced\";s:5:\"5.6.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:26:\"manifest, pwa, progressive\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"329b8efce059081d46936ece0c6736b3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"5fdd42d482712fbdaf000b28ea7adce9\";a:15:{s:4:\"name\";s:13:\"Related posts\";s:11:\"description\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:14:\"jumpstart_desc\";s:113:\"Keep visitors engaged on your blog by highlighting relevant and new content at the bottom of each published post.\";s:4:\"sort\";s:2:\"29\";s:20:\"recommendation_order\";s:1:\"9\";s:10:\"introduced\";s:3:\"2.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:11:\"Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:360:\"related, jetpack related posts, related posts for wordpress, related posts, popular posts, popular, related content, related post, contextual, context, contextual related posts, related articles, similar posts, easy related posts, related page, simple related posts, free related posts, related thumbnails, similar, engagement, yet another related posts plugin\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2c5096ef610018e98a8bcccfbea4471e\";a:15:{s:4:\"name\";s:6:\"Search\";s:11:\"description\";s:87:\"Enhanced search, powered by Elasticsearch, a powerful replacement for WordPress search.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"34\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:6:\"Search\";s:25:\"additional_search_queries\";s:110:\"search, elastic, elastic search, elasticsearch, fast search, search results, search performance, google search\";s:12:\"plan_classes\";s:8:\"business\";}s:32:\"0d81dd7df3ad2f245e84fd4fb66bf829\";a:15:{s:4:\"name\";s:9:\"SEO Tools\";s:11:\"description\";s:50:\"Better results on search engines and social media.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"35\";s:20:\"recommendation_order\";s:2:\"15\";s:10:\"introduced\";s:3:\"4.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:7:\"Traffic\";s:25:\"additional_search_queries\";s:81:\"search engine optimization, social preview, meta description, custom title format\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"32aaa676b3b6c9f3ef22430e1e0bca24\";a:15:{s:4:\"name\";s:7:\"Sharing\";s:11:\"description\";s:120:\"Add Twitter, Facebook and Google+ buttons at the bottom of each post, making it easy for visitors to share your content.\";s:14:\"jumpstart_desc\";s:119:\"Twitter, Facebook and many other buttons at the bottom of each post, making it easy for visitors to share your content.\";s:4:\"sort\";s:1:\"7\";s:20:\"recommendation_order\";s:1:\"6\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:19:\"Social, Recommended\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:229:\"share, sharing, sharedaddy, social buttons, buttons, share facebook, share twitter, social media sharing, social media share, social share, icons, email, facebook, twitter, linkedin, pinterest, pocket, social widget, social media\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"948472b453cda59b38bb7c37af889af0\";a:15:{s:4:\"name\";s:16:\"Shortcode Embeds\";s:11:\"description\";s:50:\"Embed media from popular sites without any coding.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"3\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:3:\"1.2\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:46:\"Photos and Videos, Social, Writing, Appearance\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:236:\"shortcodes, shortcode, embeds, media, bandcamp, dailymotion, facebook, flickr, google calendars, google maps, google+, polldaddy, recipe, recipes, scribd, slideshare, slideshow, slideshows, soundcloud, ted, twitter, vimeo, vine, youtube\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7d00a6ca0a79fbe893275aaf6ed6ae42\";a:15:{s:4:\"name\";s:16:\"WP.me Shortlinks\";s:11:\"description\";s:54:\"Create short and simple links for all posts and pages.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"8\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:17:\"shortlinks, wp.me\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"372e711395f23c466e04d4fd07f73099\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2ea687cec293289a2a3e5f0459e79768\";a:15:{s:4:\"name\";s:8:\"Sitemaps\";s:11:\"description\";s:50:\"Make it easy for search engines to find your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"13\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.9\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:6:\"Public\";s:11:\"module_tags\";s:20:\"Recommended, Traffic\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:39:\"sitemap, traffic, search, site map, seo\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"2fe9dc2c7389d4f0825a0b23bc8b19d1\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e7cf8a7e0f151ccf7cbdc6d8f118f316\";a:15:{s:4:\"name\";s:14:\"Secure Sign On\";s:11:\"description\";s:62:\"Allow users to log into this site using WordPress.com accounts\";s:14:\"jumpstart_desc\";s:98:\"Lets you log in to all your Jetpack-enabled sites with one click using your WordPress.com account.\";s:4:\"sort\";s:2:\"30\";s:20:\"recommendation_order\";s:1:\"5\";s:10:\"introduced\";s:3:\"2.6\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:10:\"Developers\";s:7:\"feature\";s:19:\"Security, Jumpstart\";s:25:\"additional_search_queries\";s:34:\"sso, single sign on, login, log in\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"34fb073ed896af853ed48bd5739240cb\";a:15:{s:4:\"name\";s:10:\"Site Stats\";s:11:\"description\";s:44:\"Collect valuable traffic stats and insights.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:1:\"2\";s:10:\"introduced\";s:3:\"1.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:23:\"Site Stats, Recommended\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:54:\"statistics, tracking, analytics, views, traffic, stats\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"8de0dfff24a17cf0fa0011dfc691a3f3\";a:15:{s:4:\"name\";s:13:\"Subscriptions\";s:11:\"description\";s:87:\"Allow users to subscribe to your posts and comments and receive notifications via email\";s:14:\"jumpstart_desc\";s:126:\"Give visitors two easy subscription options — while commenting, or via a separate email subscription widget you can display.\";s:4:\"sort\";s:1:\"9\";s:20:\"recommendation_order\";s:1:\"8\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:6:\"Social\";s:7:\"feature\";s:21:\"Engagement, Jumpstart\";s:25:\"additional_search_queries\";s:74:\"subscriptions, subscription, email, follow, followers, subscribers, signup\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"4744f348db095538d3edcacb0ed99c89\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"d89db0d934b39f86065ff58e73594070\";a:15:{s:4:\"name\";s:15:\"Tiled Galleries\";s:11:\"description\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:14:\"jumpstart_desc\";s:61:\"Display image galleries in a variety of elegant arrangements.\";s:4:\"sort\";s:2:\"24\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.1\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:21:\"Appearance, Jumpstart\";s:25:\"additional_search_queries\";s:43:\"gallery, tiles, tiled, grid, mosaic, images\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"01987a7ba5e19786f2992501add8181a\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"20459cc462babfc5a82adf6b34f6e8b1\";a:15:{s:4:\"name\";s:20:\"Backups and Scanning\";s:11:\"description\";s:100:\"Protect your site with daily or real-time backups and automated virus scanning and threat detection.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"32\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"0:1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:5:\"false\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:16:\"Security, Health\";s:25:\"additional_search_queries\";s:386:\"backup, cloud backup, database backup, restore, wordpress backup, backup plugin, wordpress backup plugin, back up, backup wordpress, backwpup, vaultpress, backups, off-site backups, offsite backup, offsite, off-site, antivirus, malware scanner, security, virus, viruses, prevent viruses, scan, anti-virus, antimalware, protection, safe browsing, malware, wp security, wordpress security\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"836245eb0a8f0c5272542305a88940c1\";a:15:{s:4:\"name\";s:17:\"Site verification\";s:11:\"description\";s:58:\"Establish your site\'s authenticity with external services.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"33\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"3.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:10:\"Engagement\";s:25:\"additional_search_queries\";s:56:\"webmaster, seo, google, bing, pinterest, search, console\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"e94397a5c47c1be995eff613e65a674f\";a:15:{s:4:\"name\";s:10:\"VideoPress\";s:11:\"description\";s:101:\"Save on hosting storage and bandwidth costs by streaming fast, ad-free video from our global network.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"27\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.5\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:5:\"false\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:17:\"Photos and Videos\";s:7:\"feature\";s:7:\"Writing\";s:25:\"additional_search_queries\";s:118:\"video, videos, videopress, video gallery, video player, videoplayer, mobile video, vimeo, youtube, html5 video, stream\";s:12:\"plan_classes\";s:17:\"business, premium\";}s:32:\"032cd76e08467c732ccb026efda0c9cd\";a:15:{s:4:\"name\";s:17:\"Widget Visibility\";s:11:\"description\";s:42:\"Control where widgets appear on your site.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:2:\"17\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"2.4\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:10:\"Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:54:\"widget visibility, logic, conditional, widgets, widget\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"9b3e84beedf2e96f1ac5dd6498d2b1aa\";a:15:{s:4:\"name\";s:21:\"Extra Sidebar Widgets\";s:11:\"description\";s:54:\"Add images, Twitter streams, and more to your sidebar.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"4\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:3:\"1.2\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:2:\"No\";s:13:\"auto_activate\";s:3:\"Yes\";s:11:\"module_tags\";s:18:\"Social, Appearance\";s:7:\"feature\";s:10:\"Appearance\";s:25:\"additional_search_queries\";s:65:\"widget, widgets, facebook, gallery, twitter, gravatar, image, rss\";s:12:\"plan_classes\";s:0:\"\";}s:32:\"7724fd9600745cf93e37cc09282e1a37\";a:15:{s:4:\"name\";s:3:\"Ads\";s:11:\"description\";s:60:\"Earn income by allowing Jetpack to display high quality ads.\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:1:\"1\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:5:\"4.5.0\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:3:\"Yes\";s:13:\"auto_activate\";s:2:\"No\";s:11:\"module_tags\";s:19:\"Traffic, Appearance\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:26:\"advertising, ad codes, ads\";s:12:\"plan_classes\";s:17:\"premium, business\";}s:32:\"5b8f8e5b5a1887e3c0393cb78d5143a3\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:14:\"jumpstart_desc\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(144,'_amn_wpforms-lite_last_checked','1555113600','yes'),(152,'wpforms_review','a:2:{s:4:\"time\";i:1555170930;s:9:\"dismissed\";b:0;}','yes'),(595,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(642,'themeisle_sdk_notifications','a:2:{s:17:\"last_notification\";a:2:{s:2:\"id\";s:16:\"neve_review_flag\";s:10:\"display_at\";i:1555605606;}s:24:\"last_notification_active\";i:0;}','yes'),(824,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1556170631;s:7:\"checked\";a:2:{s:4:\"neve\";s:5:\"2.3.4\";s:15:\"twentyseventeen\";s:3:\"2.1\";}s:8:\"response\";a:1:{s:4:\"neve\";a:4:{s:5:\"theme\";s:4:\"neve\";s:11:\"new_version\";s:5:\"2.3.6\";s:3:\"url\";s:34:\"https://wordpress.org/themes/neve/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/theme/neve.2.3.6.zip\";}}s:12:\"translations\";a:0:{}}','no'),(825,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1556170631;s:7:\"checked\";a:4:{s:19:\"akismet/akismet.php\";s:5:\"4.1.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.1.1\";s:23:\"elementor/elementor.php\";s:6:\"2.5.14\";s:43:\"themeisle-companion/themeisle-companion.php\";s:5:\"2.8.2\";}s:8:\"response\";a:1:{s:43:\"themeisle-companion/themeisle-companion.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:33:\"w.org/plugins/themeisle-companion\";s:4:\"slug\";s:19:\"themeisle-companion\";s:6:\"plugin\";s:43:\"themeisle-companion/themeisle-companion.php\";s:11:\"new_version\";s:5:\"2.8.3\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/themeisle-companion/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/themeisle-companion.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/themeisle-companion/assets/icon-128x128.png?rev=1807829\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/themeisle-companion/assets/banner-772x250.png?rev=1832347\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"5.1.1\";s:12:\"requires_php\";s:3:\"5.4\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":9:{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.1.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.1.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:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.1.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.1.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"2.5.14\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.2.5.14.zip\";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:{}}}}','no'),(830,'_transient_feed_9bc1b9ec726e1f508c5207949084454a','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"ThemeIsle Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://themeisle.com/blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WordPress Tutorials and Reviews for Beginners and Advanced\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Apr 2019 11:54:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"https://wordpress.org/?v=4.9.10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:128:\"https://mllj2j8xvfl0.i.optimole.com/w:auto/h:auto/q:auto/https://s15165.pcdn.co/wp-content/uploads/2018/03/logo_demo_bar_new.png\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"ThemeIsle Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://themeisle.com/blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"10 Creative Ways to Use Google Maps on Website (With Examples)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://themeisle.com/blog/use-google-maps-on-website/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://themeisle.com/blog/use-google-maps-on-website/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 25 Apr 2019 09:47:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=11824\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:582:\"<p>There are many reasons why you would want to use Google maps on a website, but here are the most important ones: It helps users find your locations It sends out trust signals to readers about your credibility as an organization Maps can make your website interactive and thereby improve user experience Ten examples of...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/use-google-maps-on-website/\">10 Creative Ways to Use Google Maps on Website (With Examples)</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Priya\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://themeisle.com/blog/use-google-maps-on-website/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"4 Steps to Performing an Effective Website Content Audit\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://themeisle.com/blog/website-content-audit/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://themeisle.com/blog/website-content-audit/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 24 Apr 2019 08:23:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21664\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:579:\"<p>If you don&#8217;t clean your house from time to time, it&#8217;ll transform into a mess. The same thing goes for websites (even if it&#8217;s not as evident). Over time, posts become outdated, images stop loading, links get broken, and much more. If you don&#8217;t carry out a website content audit from time to time, things...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/website-content-audit/\">4 Steps to Performing an Effective Website Content Audit</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://themeisle.com/blog/website-content-audit/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"How Much Does a Website Cost? Less Than You Might Think\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://themeisle.com/blog/how-much-does-a-website-cost/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://themeisle.com/blog/how-much-does-a-website-cost/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 23 Apr 2019 09:52:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=22790\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:593:\"<p>In one sense, asking &#8220;how much does a website cost?&#8221; is a little like asking &#8220;how much does a house cost?&#8221; That is, the answer depends a lot on the person who&#8217;s asking it and their needs and preferences. What location? How many bedrooms? What style? You get it&#8230; However, because of how much simpler...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/how-much-does-a-website-cost/\">How Much Does a Website Cost? Less Than You Might Think</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Colin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/how-much-does-a-website-cost/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Convert Website to App: How to Do It With WordPress, Plus the Plugins to Use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://themeisle.com/blog/convert-website-to-app/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/convert-website-to-app/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Apr 2019 10:12:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21762\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:584:\"<p>A lot of popular websites go the extra mile and create dedicated apps for their visitors to use. With a website app, you can stay connected to users through device notifications, and it can provide a more engaging experience than regular mobile sites. The problem is figuring out how to convert a website to an...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/convert-website-to-app/\">Convert Website to App: How to Do It With WordPress, Plus the Plugins to Use</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://themeisle.com/blog/convert-website-to-app/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"What’s the Best Payment Gateway for WooCommerce? 5 Options Compared\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://themeisle.com/blog/best-payment-gateway-for-woocommerce/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://themeisle.com/blog/best-payment-gateway-for-woocommerce/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Apr 2019 09:34:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21753\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:655:\"<p>You&#8217;ve probably had to negotiate the minefield that is the inconsistent payment choices found on e-commerce storefronts. Some love PayPal, while others take plain credit cards, and a few even accept cryptocurrencies. With WordPress in particular, you need to consider which is the best payment gateway for WooCommerce. This e-commerce plugin works with pretty much...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/best-payment-gateway-for-woocommerce/\">What&#8217;s the Best Payment Gateway for WooCommerce? 5 Options Compared</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://themeisle.com/blog/best-payment-gateway-for-woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Adrian Spiac Interview – On TranslatePress and How to Break the Ice in a Competitive Market\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://themeisle.com/blog/adrian-spiac-interview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/adrian-spiac-interview/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 16 Apr 2019 08:21:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=22646\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:639:\"<p>Hello WordPress people, we are back with another edition in our Pirate Interviews series! Today, you&#8217;ll hear from Adrian Spiac of TranslatePress about what it takes to build a product that sells and the key steps toward gaining users&#8217; trust. We chatted with Adrian a few months ago at WordCamp Bucharest, the 3rd consecutive edition...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/adrian-spiac-interview/\">Adrian Spiac Interview &#8211; On TranslatePress and How to Break the Ice in a Competitive Market</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Adelina Tuca\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://themeisle.com/blog/adrian-spiac-interview/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Your Product Description Template: How to Write Converting Product Descriptions\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://themeisle.com/blog/product-description-template/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://themeisle.com/blog/product-description-template/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 15 Apr 2019 08:46:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:15:\"Marketing & SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21560\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:617:\"<p>If you want to run a successful e-commerce store, you have a lot of work to do. You&#8217;ll need to design the store itself, drive traffic to it, and more. However, most importantly, you’ll have to convince visitors to actually convert. Knowing the right strategies and having a product description template, therefore, can come in...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/product-description-template/\">Your Product Description Template: How to Write Converting Product Descriptions</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"https://themeisle.com/blog/product-description-template/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"How to Use WordPress Geo Location Targeting: 2 Plugins, Plus Some Tips\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://themeisle.com/blog/wordpress-geo-location/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://themeisle.com/blog/wordpress-geo-location/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 11 Apr 2019 09:26:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:17:\"WordPress Plugins\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:19:\"WordPress Tutorials\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21668\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:633:\"<p>Interested in using WordPress geo location data to personalize your website based on a user&#8217;s physical location? Geo location or &#8216;geo targeting&#8217; is very commonplace. It can be used for advertising, or to get highly-targeted content in front of the right audience. In other words, it enables you to target your website&#8217;s experience, which can...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/wordpress-geo-location/\">How to Use WordPress Geo Location Targeting: 2 Plugins, Plus Some Tips</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://themeisle.com/blog/wordpress-geo-location/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:36:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Best Logo Maker: 10 Great Tools Compared for 2019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://themeisle.com/blog/best-logo-maker/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://themeisle.com/blog/best-logo-maker/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 10 Apr 2019 09:49:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21539\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:535:\"<p>Your logo is the face of your website. A well-designed logo is self-explanatory and memorable. This post will help you choose the best logo maker in no time. How to pick the best logo maker for you When you&#8217;re choosing the best logo maker for your needs, here are some of the things to pay...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/best-logo-maker/\">Best Logo Maker: 10 Great Tools Compared for 2019</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Pulkit Bhardwaj\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://themeisle.com/blog/best-logo-maker/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:39:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n		\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"How to Write a Headline That Gets Results: 3 Key Strategies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://themeisle.com/blog/how-to-write-a-headline/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://themeisle.com/blog/how-to-write-a-headline/#respond\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 09 Apr 2019 09:15:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:15:\"Marketing & SEO\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://themeisle.com/blog/?p=21598\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:577:\"<p>Engaging content is the cornerstone of every successful website. The problem is, you may be a fantastic writer, but a lot of times people won&#8217;t click on your articles unless your headline sells them on the idea first. If you don&#8217;t know how to write a headline that sparks interest, your road to success will...</p>\n<p>The post <a rel=\"nofollow\" href=\"https://themeisle.com/blog/how-to-write-a-headline/\">How to Write a Headline That Gets Results: 3 Key Strategies</a> appeared first on <a rel=\"nofollow\" href=\"https://themeisle.com/blog\">ThemeIsle Blog</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"John Hughes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://themeisle.com/blog/how-to-write-a-headline/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://themeisle.com/blog/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:12:{s:4:\"date\";s:29:\"Thu, 25 Apr 2019 14:40:08 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:6:\"server\";s:18:\"Pagely-ARES/1.3.25\";s:25:\"x-gateway-rate-limit-conn\";s:1:\"2\";s:28:\"x-gateway-rate-limit-delayed\";s:5:\"0.441\";s:13:\"last-modified\";s:29:\"Thu, 25 Apr 2019 11:54:42 GMT\";s:4:\"etag\";s:34:\"\"c344b669ed54aeecf461a6ebd073848b\"\";s:12:\"x-robots-tag\";s:15:\"noindex, follow\";s:4:\"link\";s:63:\"<https://themeisle.com/blog/wp-json/>; rel=\"https://api.w.org/\"\";s:19:\"x-gateway-cache-key\";s:55:\"1556193283.53|standard|https|themeisle.com||/blog/feed/\";s:22:\"x-gateway-cache-status\";s:3:\"HIT\";s:20:\"x-gateway-skip-cache\";s:1:\"0\";}}s:5:\"build\";s:14:\"20130911133210\";}','no'),(831,'_transient_timeout_feed_mod_9bc1b9ec726e1f508c5207949084454a','1556246408','no'),(832,'_transient_feed_mod_9bc1b9ec726e1f508c5207949084454a','1556203208','no'),(833,'_transient_timeout_themeisle_sdk_feed_items','1556376008','no'),(834,'_transient_themeisle_sdk_feed_items','a:5:{i:0;a:3:{s:5:\"title\";s:62:\"10 Creative Ways to Use Google Maps on Website (With Examples)\";s:4:\"date\";i:1556185669;s:4:\"link\";s:54:\"https://themeisle.com/blog/use-google-maps-on-website/\";}i:1;a:3:{s:5:\"title\";s:56:\"4 Steps to Performing an Effective Website Content Audit\";s:4:\"date\";i:1556094233;s:4:\"link\";s:49:\"https://themeisle.com/blog/website-content-audit/\";}i:2;a:3:{s:5:\"title\";s:55:\"How Much Does a Website Cost? Less Than You Might Think\";s:4:\"date\";i:1556013130;s:4:\"link\";s:56:\"https://themeisle.com/blog/how-much-does-a-website-cost/\";}i:3;a:3:{s:5:\"title\";s:76:\"Convert Website to App: How to Do It With WordPress, Plus the Plugins to Use\";s:4:\"date\";i:1555582330;s:4:\"link\";s:50:\"https://themeisle.com/blog/convert-website-to-app/\";}i:4;a:3:{s:5:\"title\";s:69:\"What’s the Best Payment Gateway for WooCommerce? 5 Options Compared\";s:4:\"date\";i:1555493666;s:4:\"link\";s:64:\"https://themeisle.com/blog/best-payment-gateway-for-woocommerce/\";}}','no'),(835,'_transient_timeout_themeisle_sdk_products','1556224809','no'),(836,'_transient_themeisle_sdk_products','a:7:{i:0;a:4:{s:4:\"name\";s:4:\"Neve\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:4:\"neve\";s:8:\"installs\";i:20000;}i:1;a:4:{s:4:\"name\";s:6:\"Hestia\";s:4:\"type\";s:5:\"theme\";s:4:\"slug\";s:6:\"hestia\";s:8:\"installs\";i:100000;}i:2;a:4:{s:4:\"name\";s:21:\"FEEDZY RSS Feeds Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:16:\"feedzy-rss-feeds\";s:8:\"installs\";i:30000;}i:3;a:4:{s:4:\"name\";s:46:\"Gutenberg Blocks and Template Library by Otter\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:12:\"otter-blocks\";s:8:\"installs\";i:6000;}i:4;a:4:{s:4:\"name\";s:22:\"Orbit Fox by ThemeIsle\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:19:\"themeisle-companion\";s:8:\"installs\";i:300000;}i:5;a:4:{s:4:\"name\";s:58:\"Visualizer: Tables and Charts Manager for WordPress (Lite)\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:10:\"visualizer\";s:8:\"installs\";i:40000;}i:6;a:4:{s:4:\"name\";s:22:\"WP Product Review Lite\";s:4:\"type\";s:6:\"plugin\";s:4:\"slug\";s:17:\"wp-product-review\";s:8:\"installs\";i:50000;}}','no'),(674,'_elementor_global_css','a:4:{s:4:\"time\";i:1555605899;s:5:\"fonts\";a:2:{i:0;s:6:\"Roboto\";i:13;s:11:\"Roboto Slab\";}s:6:\"status\";s:4:\"file\";i:0;b:0;}','yes'),(669,'wpcf7','a:2:{s:7:\"version\";s:5:\"5.1.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1555605656;s:7:\"version\";s:5:\"5.1.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(751,'neve_notice_dismissed','yes','yes'),(731,'_site_transient_timeout_browser_127868b9556d0b73282ae4585eb3c66a','1556381272','no'),(732,'_site_transient_browser_127868b9556d0b73282ae4585eb3c66a','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"73.0.3683.103\";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'),(733,'_site_transient_timeout_php_check_8706d9e16ec2aa6542c624d1e3c9facd','1556381272','no'),(734,'_site_transient_php_check_8706d9e16ec2aa6542c624d1e3c9facd','a:5:{s:19:\"recommended_version\";s:3:\"7.3\";s:15:\"minimum_version\";s:5:\"5.2.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:1;}','no'),(524,'elementor_log','a:3:{s:32:\"f63de60c11918390dd35956398c81135\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"1314\";s:7:\"\0*\0file\";s:289:\"https://test.evergreenwellness.com/wp-admin/load-scripts.php?c=1&load%5B%5D=underscore,shortcode,utils,jquery-core,jquery-migrate,backbone,wp-util,wp-backbone,media-models,moxiejs,plupload,wp-plupload,jqu&load%5B%5D=ery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable&ver=5.1.1\";s:7:\"\0*\0line\";s:2:\"11\";s:7:\"\0*\0date\";s:19:\"2019-04-14 21:57:38\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:31:\"e.toLowerCase 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:\"2019-04-14 21:57:38\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1555279058\";s:7:\"message\";s:31:\"e.toLowerCase is not a function\";s:3:\"url\";s:289:\"https://test.evergreenwellness.com/wp-admin/load-scripts.php?c=1&load%5B%5D=underscore,shortcode,utils,jquery-core,jquery-migrate,backbone,wp-util,wp-backbone,media-models,moxiejs,plupload,wp-plupload,jqu&load%5B%5D=ery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable&ver=5.1.1\";s:4:\"line\";s:2:\"11\";s:6:\"column\";s:4:\"1314\";}}s:32:\"303ee68c4e82e549151c2ccd0ec7e3a0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2019-04-18 16:41:16\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.13\";s:2:\"to\";s:6:\"2.5.14\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-04-18 16:41:16\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"2.5.13\";s:2:\"to\";s:6:\"2.5.14\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5b57413389aa43f5f1bf0ca72f9a05aa\";O:30:\"Elementor\\Core\\Logger\\Items\\JS\":10:{s:9:\"\0*\0column\";s:4:\"8029\";s:7:\"\0*\0file\";s:108:\"https://test.evergreenwellness.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=2.5.14\";s:7:\"\0*\0line\";s:1:\"2\";s:7:\"\0*\0date\";s:19:\"2019-04-20 23:28:50\";s:7:\"\0*\0type\";s:5:\"error\";s:10:\"\0*\0message\";s:58:\"Cannot read property \\&#039;attributes\\&#039; of undefined\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2019-04-20 23:28:50\";}s:7:\"\0*\0args\";a:6:{s:4:\"type\";s:5:\"error\";s:9:\"timestamp\";s:10:\"1555802930\";s:7:\"message\";s:48:\"Cannot read property \\\'attributes\\\' of undefined\";s:3:\"url\";s:108:\"https://test.evergreenwellness.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=2.5.14\";s:4:\"line\";s:1:\"2\";s:6:\"column\";s:4:\"8029\";}}}','no'),(397,'_elementor_installed_time','1555177326','yes'),(398,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:2:{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:10:\"categories\";s:247:\"[\"404 page\",\"about\",\"archive\",\"call to action\",\"clients\",\"contact\",\"faq\",\"features\",\"footer\",\"header\",\"hero\",\"portfolio\",\"pricing\",\"product archive\",\"services\",\"single page\",\"single post\",\"single product\",\"stats\",\"subscribe\",\"team\",\"testimonials\"]\";s:9:\"templates\";a:554:{i:0;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"14\";s:11:\"trend_index\";s:2:\"10\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:1;a:14:{s:2:\"id\";s:5:\"10107\";s:5:\"title\";s:34:\"Classic | Promotion | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/balls_small.png\";s:12:\"tmpl_created\";s:10:\"1547851373\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-promotion-announcement/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"377\";s:11:\"trend_index\";s:3:\"235\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:2;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"45\";s:11:\"trend_index\";s:2:\"33\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:3;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"24\";s:11:\"trend_index\";s:2:\"15\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:4;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"42\";s:11:\"trend_index\";s:2:\"28\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:5;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"100\";s:11:\"trend_index\";s:2:\"72\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:6;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"82\";s:11:\"trend_index\";s:2:\"66\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:7;a:14:{s:2:\"id\";s:5:\"10158\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/coco_small.png\";s:12:\"tmpl_created\";s:10:\"1547852227\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-contact/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"384\";s:11:\"trend_index\";s:3:\"146\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:8;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"207\";s:11:\"trend_index\";s:3:\"239\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:9;a:14:{s:2:\"id\";s:5:\"10169\";s:5:\"title\";s:37:\"Slide In | Register | Subscribe | App\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/slideinapp_small.png\";s:12:\"tmpl_created\";s:10:\"1547852334\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"399\";s:11:\"trend_index\";s:3:\"255\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:10;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"43\";s:11:\"trend_index\";s:2:\"34\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:11;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"215\";s:11:\"trend_index\";s:3:\"237\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:12;a:14:{s:2:\"id\";s:5:\"10190\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/engage_small.png\";s:12:\"tmpl_created\";s:10:\"1547885703\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"389\";s:11:\"trend_index\";s:3:\"242\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:13;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"124\";s:11:\"trend_index\";s:3:\"152\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:14;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"316\";s:11:\"trend_index\";s:3:\"324\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:15;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"165\";s:11:\"trend_index\";s:3:\"164\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:16;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"198\";s:11:\"trend_index\";s:3:\"207\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:17;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"102\";s:11:\"trend_index\";s:2:\"99\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:18;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"311\";s:11:\"trend_index\";s:3:\"274\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:19;a:14:{s:2:\"id\";s:5:\"10256\";s:5:\"title\";s:20:\"Classic | Sale | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/fruit_small.png\";s:12:\"tmpl_created\";s:10:\"1547888909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"446\";s:11:\"trend_index\";s:3:\"363\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:20;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"36\";s:11:\"trend_index\";s:2:\"39\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:21;a:14:{s:2:\"id\";s:5:\"10267\";s:5:\"title\";s:29:\"Classic | Contact | Christmas\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547889047\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-contact-christmas/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"413\";s:11:\"trend_index\";s:3:\"254\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:22;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"332\";s:11:\"trend_index\";s:3:\"328\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:23;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"225\";s:11:\"trend_index\";s:3:\"205\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:24;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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:10:\"[\"header\"]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"25\";s:11:\"trend_index\";s:2:\"16\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:25;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"113\";s:11:\"trend_index\";s:2:\"89\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:26;a:14:{s:2:\"id\";s:5:\"10307\";s:5:\"title\";s:43:\"Fly In | Promotion | Christmas | Teddy Bear\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547893266\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/fly-in-promotion-christmas/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"505\";s:11:\"trend_index\";s:3:\"504\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:27;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"180\";s:11:\"trend_index\";s:3:\"187\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:28;a:14:{s:2:\"id\";s:5:\"10318\";s:5:\"title\";s:27:\"Classic | Contact | Bicycle\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/by_small.png\";s:12:\"tmpl_created\";s:10:\"1547893367\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"420\";s:11:\"trend_index\";s:3:\"294\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:29;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"295\";s:11:\"trend_index\";s:3:\"305\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:30;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"115\";s:11:\"trend_index\";s:3:\"120\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:31;a:14:{s:2:\"id\";s:5:\"10339\";s:5:\"title\";s:22:\"Fly In | Contact | Spa\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547893603\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"437\";s:11:\"trend_index\";s:3:\"340\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:32;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"286\";s:11:\"trend_index\";s:3:\"233\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:33;a:14:{s:2:\"id\";s:5:\"10352\";s:5:\"title\";s:23:\"Fly In | Contact | Wine\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547915335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/fly-in-contact/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"458\";s:11:\"trend_index\";s:3:\"411\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:34;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"428\";s:11:\"trend_index\";s:3:\"410\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:35;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"340\";s:11:\"trend_index\";s:3:\"304\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:36;a:14:{s:2:\"id\";s:5:\"10372\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/phone_small.png\";s:12:\"tmpl_created\";s:10:\"1547915554\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-register-subscribe-2/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"499\";s:11:\"trend_index\";s:3:\"486\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:37;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"419\";s:11:\"trend_index\";s:3:\"440\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:38;a:14:{s:2:\"id\";s:5:\"10382\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547916616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/bottom-bar-announcement/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"401\";s:11:\"trend_index\";s:3:\"257\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:39;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"76\";s:11:\"trend_index\";s:2:\"62\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:40;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"71\";s:11:\"trend_index\";s:2:\"56\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:41;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"243\";s:11:\"trend_index\";s:3:\"273\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:42;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"121\";s:11:\"trend_index\";s:2:\"91\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:43;a:14:{s:2:\"id\";s:5:\"10424\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/flower_small.png\";s:12:\"tmpl_created\";s:10:\"1547961866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"480\";s:11:\"trend_index\";s:3:\"404\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:44;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"89\";s:11:\"trend_index\";s:3:\"103\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:45;a:14:{s:2:\"id\";s:5:\"10434\";s:5:\"title\";s:27:\"Classic | Sale | Headphones\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/head_small.png\";s:12:\"tmpl_created\";s:10:\"1547961950\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-6/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"425\";s:11:\"trend_index\";s:3:\"381\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:46;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"75\";s:11:\"trend_index\";s:2:\"57\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:47;a:14:{s:2:\"id\";s:5:\"10444\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/plant_small.png\";s:12:\"tmpl_created\";s:10:\"1547962029\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/classic-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"443\";s:11:\"trend_index\";s:3:\"331\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:48;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"51\";s:11:\"trend_index\";s:2:\"35\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:49;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"97\";s:11:\"trend_index\";s:2:\"73\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:50;a:14:{s:2:\"id\";s:5:\"10467\";s:5:\"title\";s:27:\"Bottom Bar | Contact | Lego\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small.png\";s:12:\"tmpl_created\";s:10:\"1547962277\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/bottom-bar-contact/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"529\";s:11:\"trend_index\";s:3:\"521\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:51;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"81\";s:11:\"trend_index\";s:2:\"84\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:52;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"172\";s:11:\"trend_index\";s:3:\"201\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:53;a:14:{s:2:\"id\";s:5:\"10487\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/acc_small.png\";s:12:\"tmpl_created\";s:10:\"1547964527\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"476\";s:11:\"trend_index\";s:3:\"374\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:54;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"159\";s:11:\"trend_index\";s:3:\"143\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:55;a:14:{s:2:\"id\";s:5:\"10498\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964616\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-7/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"452\";s:11:\"trend_index\";s:3:\"402\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:56;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"160\";s:11:\"trend_index\";s:3:\"169\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:57;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"273\";s:11:\"trend_index\";s:3:\"256\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:58;a:14:{s:2:\"id\";s:5:\"10519\";s:5:\"title\";s:27:\"Hello Bar | Promotion | App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964801\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-promotion-app-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"500\";s:11:\"trend_index\";s:3:\"488\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:59;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"184\";s:11:\"trend_index\";s:3:\"218\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:60;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"267\";s:11:\"trend_index\";s:3:\"259\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:61;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"329\";s:11:\"trend_index\";s:3:\"327\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:62;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"358\";s:11:\"trend_index\";s:3:\"347\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:63;a:14:{s:2:\"id\";s:5:\"10559\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_small.png\";s:12:\"tmpl_created\";s:10:\"1547967711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/bottom-bar-register-subscribe-2/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"503\";s:11:\"trend_index\";s:3:\"478\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:64;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"44\";s:11:\"trend_index\";s:2:\"47\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:65;a:14:{s:2:\"id\";s:5:\"10569\";s:5:\"title\";s:15:\"Slide In | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/off_small.png\";s:12:\"tmpl_created\";s:10:\"1547967812\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/slide-in-sale/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"469\";s:11:\"trend_index\";s:3:\"455\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:66;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"90\";s:11:\"trend_index\";s:2:\"77\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:67;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"152\";s:11:\"trend_index\";s:3:\"109\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:68;a:14:{s:2:\"id\";s:5:\"10590\";s:5:\"title\";s:19:\"Full Screen | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pass1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967978\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-6/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"468\";s:11:\"trend_index\";s:3:\"483\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:69;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"229\";s:11:\"trend_index\";s:3:\"248\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:70;a:14:{s:2:\"id\";s:5:\"10600\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/orange_small.png\";s:12:\"tmpl_created\";s:10:\"1547968080\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"464\";s:11:\"trend_index\";s:3:\"447\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:71;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"321\";s:11:\"trend_index\";s:3:\"296\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:72;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"324\";s:11:\"trend_index\";s:3:\"301\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:73;a:14:{s:2:\"id\";s:5:\"10622\";s:5:\"title\";s:34:\"Full Screen | Contact | Headphones\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/full_hear_small.png\";s:12:\"tmpl_created\";s:10:\"1547969678\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-contact-2/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"466\";s:11:\"trend_index\";s:3:\"383\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:74;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"357\";s:11:\"trend_index\";s:3:\"345\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:75;a:14:{s:2:\"id\";s:5:\"10633\";s:5:\"title\";s:23:\"Slide In | Login | Lego\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/tro_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547969858\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/slide-in-login/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"521\";s:11:\"trend_index\";s:3:\"518\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:76;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"405\";s:11:\"trend_index\";s:3:\"509\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:77;a:14:{s:2:\"id\";s:5:\"10644\";s:5:\"title\";s:26:\"Fly In | Contact | Webinar\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547970814\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-contact-2/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"447\";s:11:\"trend_index\";s:3:\"354\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:78;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"110\";s:11:\"trend_index\";s:2:\"82\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:79;a:14:{s:2:\"id\";s:5:\"10654\";s:5:\"title\";s:31:\"Full Screen | Login | Christmas\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/full_login_small.png\";s:12:\"tmpl_created\";s:10:\"1547970917\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/full-screen-login-christmas/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"510\";s:11:\"trend_index\";s:3:\"473\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:80;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"210\";s:11:\"trend_index\";s:3:\"222\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:81;a:14:{s:2:\"id\";s:5:\"10664\";s:5:\"title\";s:34:\"Slide In | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_gym_small.png\";s:12:\"tmpl_created\";s:10:\"1547973928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-contact-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"467\";s:11:\"trend_index\";s:3:\"457\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:82;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"88\";s:11:\"trend_index\";s:2:\"58\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:83;a:14:{s:2:\"id\";s:5:\"10675\";s:5:\"title\";s:35:\"Full Screen | Login | Gym | Fitness\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/gym_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547974110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-4/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"465\";s:11:\"trend_index\";s:3:\"401\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:84;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"91\";s:11:\"trend_index\";s:3:\"102\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:85;a:14:{s:2:\"id\";s:5:\"10685\";s:5:\"title\";s:32:\"Hello Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/env_small.png\";s:12:\"tmpl_created\";s:10:\"1547974729\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-3/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"501\";s:11:\"trend_index\";s:3:\"534\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:86;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"359\";s:11:\"trend_index\";s:3:\"365\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:87;a:14:{s:2:\"id\";s:4:\"9719\";s:5:\"title\";s:30:\"Classic | Subscribe | Register\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/register_small.png\";s:12:\"tmpl_created\";s:10:\"1547976107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-subscribe-register/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"450\";s:11:\"trend_index\";s:3:\"318\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:88;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"32\";s:11:\"trend_index\";s:2:\"20\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:89;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"69\";s:11:\"trend_index\";s:2:\"59\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:90;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"376\";s:11:\"trend_index\";s:3:\"380\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:91;a:14:{s:2:\"id\";s:5:\"10137\";s:5:\"title\";s:34:\"Full Screen | Contact | Restaurant\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rest_small.png\";s:12:\"tmpl_created\";s:10:\"1547976342\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-contact/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"473\";s:11:\"trend_index\";s:3:\"416\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:92;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"60\";s:11:\"trend_index\";s:2:\"48\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:93;a:14:{s:2:\"id\";s:5:\"10244\";s:5:\"title\";s:17:\"Bottom Bar | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/wow_small.png\";s:12:\"tmpl_created\";s:10:\"1547976402\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/bottom-bar-sale/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"486\";s:11:\"trend_index\";s:3:\"458\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:94;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"103\";s:11:\"trend_index\";s:3:\"113\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:95;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"158\";s:11:\"trend_index\";s:3:\"180\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:96;a:14:{s:2:\"id\";s:5:\"10127\";s:5:\"title\";s:35:\"Fly In | Announcement | Maintenance\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/pizza_small.png\";s:12:\"tmpl_created\";s:10:\"1547984061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-2/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"526\";s:11:\"trend_index\";s:3:\"520\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:97;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"264\";s:11:\"trend_index\";s:3:\"268\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:98;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"365\";s:11:\"trend_index\";s:3:\"413\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:99;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"379\";s:11:\"trend_index\";s:3:\"414\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:100;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"439\";s:11:\"trend_index\";s:3:\"456\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:101;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"262\";s:11:\"trend_index\";s:3:\"293\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:102;a:14:{s:2:\"id\";s:5:\"10776\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social1_small.png\";s:12:\"tmpl_created\";s:10:\"1548047055\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/fly-in-contact-social-share/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"528\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:103;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"249\";s:11:\"trend_index\";s:3:\"177\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:104;a:14:{s:2:\"id\";s:5:\"10785\";s:5:\"title\";s:33:\"Fly In | Contact | Social | Share\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/social2_small.png\";s:12:\"tmpl_created\";s:10:\"1548047593\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/fly-in-contact-social-share-2/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"455\";s:11:\"trend_index\";s:3:\"337\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:105;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"369\";s:11:\"trend_index\";s:3:\"346\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:106;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"411\";s:11:\"trend_index\";s:3:\"498\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:107;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"87\";s:11:\"trend_index\";s:2:\"67\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:108;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"116\";s:11:\"trend_index\";s:2:\"95\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:109;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"240\";s:11:\"trend_index\";s:3:\"170\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:110;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"221\";s:11:\"trend_index\";s:3:\"203\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:111;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"56\";s:11:\"trend_index\";s:2:\"37\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:112;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"95\";s:11:\"trend_index\";s:2:\"88\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:113;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"189\";s:11:\"trend_index\";s:3:\"190\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:114;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"322\";s:11:\"trend_index\";s:3:\"278\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:115;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"372\";s:11:\"trend_index\";s:3:\"358\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:116;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"449\";s:11:\"trend_index\";s:3:\"450\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:117;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"424\";s:11:\"trend_index\";s:3:\"461\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:118;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"149\";s:11:\"trend_index\";s:3:\"134\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:119;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"352\";s:11:\"trend_index\";s:3:\"356\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:120;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"55\";s:11:\"trend_index\";s:2:\"26\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:121;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"167\";s:11:\"trend_index\";s:3:\"149\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:122;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"305\";s:11:\"trend_index\";s:3:\"245\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:123;a:14:{s:2:\"id\";s:5:\"10794\";s:5:\"title\";s:34:\"Classic | Contact | Social | Share\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/s_small.png\";s:12:\"tmpl_created\";s:10:\"1548067619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-contact-social-share/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"456\";s:11:\"trend_index\";s:3:\"351\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:124;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"268\";s:11:\"trend_index\";s:3:\"247\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:125;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"216\";s:11:\"trend_index\";s:3:\"208\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:126;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"276\";s:11:\"trend_index\";s:3:\"216\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:127;a:14:{s:2:\"id\";s:5:\"10871\";s:5:\"title\";s:20:\"Bottom Bar | Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/01/m_small.png\";s:12:\"tmpl_created\";s:10:\"1548074396\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-contact-2/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"524\";s:11:\"trend_index\";s:3:\"515\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:128;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"395\";s:11:\"trend_index\";s:3:\"428\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:129;a:14:{s:2:\"id\";s:5:\"10936\";s:5:\"title\";s:25:\"Full Screen | Toggle Menu\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/menu_small.png\";s:12:\"tmpl_created\";s:10:\"1548874587\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-toggle-menu/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"442\";s:11:\"trend_index\";s:3:\"432\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:130;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"190\";s:11:\"trend_index\";s:3:\"156\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:131;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"164\";s:11:\"trend_index\";s:3:\"144\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:132;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"348\";s:11:\"trend_index\";s:3:\"275\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:133;a:14:{s:2:\"id\";s:5:\"10964\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/love_small.png\";s:12:\"tmpl_created\";s:10:\"1550039106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/classic-promotion-coupon/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"531\";s:11:\"trend_index\";s:3:\"508\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:134;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"31\";s:11:\"trend_index\";s:2:\"23\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:135;a:14:{s:2:\"id\";s:5:\"10992\";s:5:\"title\";s:59:\"Classic | Promotion | Coupon | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/02/h_small.png\";s:12:\"tmpl_created\";s:10:\"1550072007\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-promotion-coupon-love-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"532\";s:11:\"trend_index\";s:3:\"528\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:136;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"227\";s:11:\"trend_index\";s:3:\"282\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:137;a:14:{s:2:\"id\";s:5:\"11005\";s:5:\"title\";s:50:\"Classic | Promotion | Love | Valentine&#8217;s Day\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/02/bear_small.png\";s:12:\"tmpl_created\";s:10:\"1550073303\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-promotion-love-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"533\";s:11:\"trend_index\";s:3:\"500\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:138;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"168\";s:11:\"trend_index\";s:3:\"159\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:139;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"265\";s:11:\"trend_index\";s:3:\"429\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:140;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"256\";s:11:\"trend_index\";s:3:\"336\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:141;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"162\";s:11:\"trend_index\";s:3:\"186\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:142;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"287\";s:11:\"trend_index\";s:3:\"283\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:143;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"119\";s:11:\"trend_index\";s:3:\"115\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:144;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"173\";s:11:\"trend_index\";s:3:\"139\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:145;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"251\";s:11:\"trend_index\";s:3:\"224\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:146;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"112\";s:11:\"trend_index\";s:3:\"107\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:147;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"272\";s:11:\"trend_index\";s:3:\"321\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:148;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"156\";s:11:\"trend_index\";s:3:\"148\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:149;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"169\";s:11:\"trend_index\";s:3:\"200\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:150;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"238\";s:11:\"trend_index\";s:3:\"264\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:151;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"106\";s:11:\"trend_index\";s:2:\"94\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:152;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"202\";s:11:\"trend_index\";s:3:\"176\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:153;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"128\";s:11:\"trend_index\";s:3:\"121\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:154;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"366\";s:11:\"trend_index\";s:3:\"322\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:155;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"134\";s:11:\"trend_index\";s:3:\"167\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:156;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"288\";s:11:\"trend_index\";s:3:\"314\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:157;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"410\";s:11:\"trend_index\";s:3:\"396\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:158;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"304\";s:11:\"trend_index\";s:3:\"249\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:159;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"241\";s:11:\"trend_index\";s:3:\"194\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:160;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"381\";s:11:\"trend_index\";s:3:\"430\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:161;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"460\";s:11:\"trend_index\";s:3:\"516\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:162;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"255\";s:11:\"trend_index\";s:3:\"303\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:163;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"70\";s:11:\"trend_index\";s:2:\"53\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:164;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"181\";s:11:\"trend_index\";s:3:\"211\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:165;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"33\";s:11:\"trend_index\";s:2:\"38\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:166;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"34\";s:11:\"trend_index\";s:2:\"36\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:167;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"94\";s:11:\"trend_index\";s:3:\"130\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:168;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"120\";s:11:\"trend_index\";s:2:\"85\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:169;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"47\";s:11:\"trend_index\";s:2:\"44\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:170;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"85\";s:11:\"trend_index\";s:2:\"83\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:171;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"99\";s:11:\"trend_index\";s:3:\"150\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:172;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"199\";s:11:\"trend_index\";s:3:\"189\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:173;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"105\";s:11:\"trend_index\";s:2:\"63\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:174;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"271\";s:11:\"trend_index\";s:3:\"229\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:175;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"195\";s:11:\"trend_index\";s:3:\"223\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:176;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"259\";s:11:\"trend_index\";s:3:\"228\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:177;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"212\";s:11:\"trend_index\";s:3:\"212\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:178;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"185\";s:11:\"trend_index\";s:3:\"174\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:179;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"109\";s:11:\"trend_index\";s:3:\"106\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:180;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"208\";s:11:\"trend_index\";s:3:\"202\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:181;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"402\";s:11:\"trend_index\";s:3:\"417\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:182;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"233\";s:11:\"trend_index\";s:3:\"185\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:183;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"142\";s:11:\"trend_index\";s:3:\"105\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:184;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"111\";s:11:\"trend_index\";s:2:\"87\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:185;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"39\";s:11:\"trend_index\";s:3:\"124\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:186;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"117\";s:11:\"trend_index\";s:2:\"76\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:187;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"131\";s:11:\"trend_index\";s:3:\"104\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:188;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"83\";s:11:\"trend_index\";s:2:\"69\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:189;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"337\";s:11:\"trend_index\";s:3:\"292\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:190;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"108\";s:11:\"trend_index\";s:3:\"141\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:191;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"308\";s:11:\"trend_index\";s:3:\"290\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:192;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"35\";s:11:\"trend_index\";s:2:\"32\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:193;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"407\";s:11:\"trend_index\";s:3:\"364\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:194;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"37\";s:11:\"trend_index\";s:2:\"29\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:195;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"58\";s:11:\"trend_index\";s:2:\"30\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:196;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"107\";s:11:\"trend_index\";s:2:\"80\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:197;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"204\";s:11:\"trend_index\";s:3:\"241\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:198;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"114\";s:11:\"trend_index\";s:2:\"68\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:199;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"153\";s:11:\"trend_index\";s:3:\"168\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:200;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"66\";s:11:\"trend_index\";s:2:\"51\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:201;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"334\";s:11:\"trend_index\";s:3:\"302\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:202;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"61\";s:11:\"trend_index\";s:3:\"117\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:203;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"67\";s:11:\"trend_index\";s:2:\"52\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:204;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"54\";s:11:\"trend_index\";s:2:\"64\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:205;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"277\";s:11:\"trend_index\";s:3:\"265\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:206;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"65\";s:11:\"trend_index\";s:2:\"49\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:207;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"77\";s:11:\"trend_index\";s:2:\"71\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:208;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"127\";s:11:\"trend_index\";s:2:\"98\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:209;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"320\";s:11:\"trend_index\";s:3:\"279\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:210;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"301\";s:11:\"trend_index\";s:3:\"280\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:211;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"300\";s:11:\"trend_index\";s:3:\"262\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:212;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"141\";s:11:\"trend_index\";s:3:\"178\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:213;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"409\";s:11:\"trend_index\";s:3:\"386\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:214;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"138\";s:11:\"trend_index\";s:3:\"128\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:215;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"375\";s:11:\"trend_index\";s:3:\"389\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:216;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"323\";s:11:\"trend_index\";s:3:\"295\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:217;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"415\";s:11:\"trend_index\";s:3:\"443\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:218;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"53\";s:11:\"trend_index\";s:2:\"41\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:219;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"417\";s:11:\"trend_index\";s:3:\"406\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:220;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"73\";s:11:\"trend_index\";s:2:\"61\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:221;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"453\";s:11:\"trend_index\";s:3:\"452\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:222;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"144\";s:11:\"trend_index\";s:3:\"157\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:223;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"345\";s:11:\"trend_index\";s:3:\"308\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:224;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"150\";s:11:\"trend_index\";s:3:\"132\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:225;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"388\";s:11:\"trend_index\";s:3:\"338\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:226;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"258\";s:11:\"trend_index\";s:3:\"267\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:227;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"338\";s:11:\"trend_index\";s:3:\"250\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:228;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"98\";s:11:\"trend_index\";s:3:\"100\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:229;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"186\";s:11:\"trend_index\";s:3:\"131\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:230;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"176\";s:11:\"trend_index\";s:3:\"195\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:231;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"230\";s:11:\"trend_index\";s:3:\"215\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:232;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"96\";s:11:\"trend_index\";s:2:\"78\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:233;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"392\";s:11:\"trend_index\";s:3:\"361\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:234;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"163\";s:11:\"trend_index\";s:3:\"179\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:235;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"318\";s:11:\"trend_index\";s:3:\"300\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:236;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"104\";s:11:\"trend_index\";s:3:\"116\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:237;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"397\";s:11:\"trend_index\";s:3:\"362\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:238;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"154\";s:11:\"trend_index\";s:3:\"147\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:239;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"385\";s:11:\"trend_index\";s:3:\"408\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:240;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"122\";s:11:\"trend_index\";s:3:\"153\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:241;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"80\";s:11:\"trend_index\";s:2:\"43\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:242;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"139\";s:11:\"trend_index\";s:3:\"138\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:243;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"193\";s:11:\"trend_index\";s:3:\"140\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:244;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"246\";s:11:\"trend_index\";s:3:\"253\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:245;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"161\";s:11:\"trend_index\";s:3:\"119\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:246;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"328\";s:11:\"trend_index\";s:3:\"271\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:247;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"336\";s:11:\"trend_index\";s:3:\"315\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:248;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"62\";s:11:\"trend_index\";s:2:\"40\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:249;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"303\";s:11:\"trend_index\";s:3:\"231\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:250;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"406\";s:11:\"trend_index\";s:3:\"433\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:251;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"203\";s:11:\"trend_index\";s:3:\"165\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:252;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"495\";s:11:\"trend_index\";s:3:\"538\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:253;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"196\";s:11:\"trend_index\";s:3:\"193\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:254;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"326\";s:11:\"trend_index\";s:3:\"312\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:255;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"188\";s:11:\"trend_index\";s:3:\"160\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:256;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"441\";s:11:\"trend_index\";s:3:\"484\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:257;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"237\";s:11:\"trend_index\";s:3:\"197\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:258;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"433\";s:11:\"trend_index\";s:3:\"465\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:259;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"279\";s:11:\"trend_index\";s:3:\"217\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:260;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"488\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:261;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"48\";s:11:\"trend_index\";s:2:\"55\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:262;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"418\";s:11:\"trend_index\";s:3:\"427\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:263;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"482\";s:11:\"trend_index\";s:3:\"487\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:264;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"314\";s:11:\"trend_index\";s:3:\"333\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:265;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"86\";s:11:\"trend_index\";s:2:\"46\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:266;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"429\";s:11:\"trend_index\";s:3:\"395\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:267;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"125\";s:11:\"trend_index\";s:3:\"110\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:268;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"492\";s:11:\"trend_index\";s:3:\"532\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:269;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"171\";s:11:\"trend_index\";s:3:\"129\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:270;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"436\";s:11:\"trend_index\";s:3:\"496\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:271;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"183\";s:11:\"trend_index\";s:3:\"125\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:272;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"502\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:273;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"132\";s:11:\"trend_index\";s:3:\"114\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:274;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"427\";s:11:\"trend_index\";s:3:\"438\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:275;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"147\";s:11:\"trend_index\";s:3:\"127\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:276;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"157\";s:11:\"trend_index\";s:2:\"96\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:277;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"200\";s:11:\"trend_index\";s:3:\"123\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:278;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"223\";s:11:\"trend_index\";s:3:\"171\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:279;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"179\";s:11:\"trend_index\";s:3:\"163\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:280;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"201\";s:11:\"trend_index\";s:3:\"137\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:281;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"146\";s:11:\"trend_index\";s:2:\"75\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:282;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"232\";s:11:\"trend_index\";s:3:\"191\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:283;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"371\";s:11:\"trend_index\";s:3:\"319\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:284;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"133\";s:11:\"trend_index\";s:3:\"155\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:285;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"175\";s:11:\"trend_index\";s:3:\"158\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:286;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"347\";s:11:\"trend_index\";s:3:\"388\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:287;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"136\";s:11:\"trend_index\";s:3:\"126\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:288;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"245\";s:11:\"trend_index\";s:3:\"291\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:289;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"270\";s:11:\"trend_index\";s:3:\"240\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:290;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"354\";s:11:\"trend_index\";s:3:\"269\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:291;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"217\";s:11:\"trend_index\";s:3:\"192\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:292;a:14:{s:2:\"id\";s:4:\"9611\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546965350\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/hello-bar-sale-01/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"494\";s:11:\"trend_index\";s:3:\"463\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:293;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"187\";s:11:\"trend_index\";s:3:\"198\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:294;a:14:{s:2:\"id\";s:4:\"9622\";s:5:\"title\";s:19:\"Classic | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_promotion_small_02.png\";s:12:\"tmpl_created\";s:10:\"1546965896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-02/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"475\";s:11:\"trend_index\";s:3:\"510\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:295;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"331\";s:11:\"trend_index\";s:3:\"317\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:296;a:14:{s:2:\"id\";s:4:\"9631\";s:5:\"title\";s:38:\"Slide-in | Sale | Register | Subscribe\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Sale_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546968270\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-sale-01/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"487\";s:11:\"trend_index\";s:3:\"482\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:297;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"260\";s:11:\"trend_index\";s:3:\"209\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:298;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"390\";s:11:\"trend_index\";s:3:\"371\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:299;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"434\";s:11:\"trend_index\";s:3:\"529\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:300;a:14:{s:2:\"id\";s:4:\"9662\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottom-Bar_Register_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547009087\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/bottom-bar-register-01/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"514\";s:11:\"trend_index\";s:3:\"519\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:301;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"344\";s:11:\"trend_index\";s:3:\"390\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:302;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"422\";s:11:\"trend_index\";s:3:\"384\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:303;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"278\";s:11:\"trend_index\";s:3:\"284\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:304;a:14:{s:2:\"id\";s:4:\"9690\";s:5:\"title\";s:17:\"Classic | Contact\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547011716\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-01/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"426\";s:11:\"trend_index\";s:3:\"258\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:305;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"391\";s:11:\"trend_index\";s:3:\"378\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:306;a:14:{s:2:\"id\";s:4:\"9699\";s:5:\"title\";s:33:\"Classic | Contact | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Contact_small_02.png\";s:12:\"tmpl_created\";s:10:\"1547015827\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/classic-contact-02/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"440\";s:11:\"trend_index\";s:3:\"373\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:307;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"378\";s:11:\"trend_index\";s:3:\"418\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:308;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"421\";s:11:\"trend_index\";s:3:\"442\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:309;a:14:{s:2:\"id\";s:4:\"9571\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/FlyIn_Login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1547726151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/fly-in-login-01/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"485\";s:11:\"trend_index\";s:3:\"403\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:310;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"432\";s:11:\"trend_index\";s:3:\"421\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:311;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"197\";s:11:\"trend_index\";s:3:\"142\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:312;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"373\";s:11:\"trend_index\";s:3:\"323\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:313;a:14:{s:2:\"id\";s:4:\"9740\";s:5:\"title\";s:25:\"Classic | Promotion | App\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/app_small.png\";s:12:\"tmpl_created\";s:10:\"1547822836\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/classic-promotion-app/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"474\";s:11:\"trend_index\";s:3:\"407\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:314;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"317\";s:11:\"trend_index\";s:3:\"286\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:315;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"438\";s:11:\"trend_index\";s:3:\"474\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:316;a:14:{s:2:\"id\";s:4:\"9762\";s:5:\"title\";s:36:\"Classic | Register | Subscribe | Spa\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/spa_small_classic.png\";s:12:\"tmpl_created\";s:10:\"1547824145\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"445\";s:11:\"trend_index\";s:3:\"285\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:317;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"414\";s:11:\"trend_index\";s:3:\"387\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:318;a:14:{s:2:\"id\";s:4:\"9772\";s:5:\"title\";s:27:\"Hello bar | Promotion | App\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/app_hello_small.png\";s:12:\"tmpl_created\";s:10:\"1547824279\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/hello-bar-promotion-app/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"546\";s:11:\"trend_index\";s:3:\"495\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:319;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"374\";s:11:\"trend_index\";s:3:\"369\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:320;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"118\";s:11:\"trend_index\";s:2:\"97\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:321;a:14:{s:2:\"id\";s:4:\"9793\";s:5:\"title\";s:13:\"Fly In | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_black_small.png\";s:12:\"tmpl_created\";s:10:\"1547831151\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/popups/fly-in-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"507\";s:11:\"trend_index\";s:3:\"523\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:322;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"335\";s:11:\"trend_index\";s:3:\"441\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:323;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"292\";s:11:\"trend_index\";s:3:\"277\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:324;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"423\";s:11:\"trend_index\";s:3:\"352\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:325;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"387\";s:11:\"trend_index\";s:3:\"334\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:326;a:14:{s:2:\"id\";s:4:\"9836\";s:5:\"title\";s:21:\"Classic | Login | Pop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/login_b_small.png\";s:12:\"tmpl_created\";s:10:\"1547835635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/popups/classic-login/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"496\";s:11:\"trend_index\";s:3:\"491\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:327;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"457\";s:11:\"trend_index\";s:3:\"517\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:328;a:14:{s:2:\"id\";s:4:\"9847\";s:5:\"title\";s:25:\"Fly In | Promotion | Lego\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/fly_in_promotion_tro.png\";s:12:\"tmpl_created\";s:10:\"1547836956\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/fly-in-promotion/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"536\";s:11:\"trend_index\";s:3:\"525\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:329;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"404\";s:11:\"trend_index\";s:3:\"368\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:330;a:14:{s:2:\"id\";s:4:\"9858\";s:5:\"title\";s:27:\"Slide In | Promotion | Wine\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_promotion_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1547837100\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/slide-in-promotion/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"549\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:331;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"416\";s:11:\"trend_index\";s:3:\"409\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:332;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"234\";s:11:\"trend_index\";s:3:\"244\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:333;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"435\";s:11:\"trend_index\";s:3:\"469\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:334;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"236\";s:11:\"trend_index\";s:3:\"252\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:335;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"312\";s:11:\"trend_index\";s:3:\"272\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:336;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"224\";s:11:\"trend_index\";s:3:\"227\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:337;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"182\";s:11:\"trend_index\";s:3:\"210\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:338;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"367\";s:11:\"trend_index\";s:3:\"332\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:339;a:14:{s:2:\"id\";s:4:\"9944\";s:5:\"title\";s:33:\"Slide In | Promotion | Headphones\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547841939\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"537\";s:11:\"trend_index\";s:3:\"512\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:340;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"140\";s:11:\"trend_index\";s:3:\"172\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:341;a:14:{s:2:\"id\";s:4:\"9955\";s:5:\"title\";s:14:\"Fly In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_login_lock_small.png\";s:12:\"tmpl_created\";s:10:\"1547842065\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/fly-in-login/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"477\";s:11:\"trend_index\";s:3:\"466\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:342;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"222\";s:11:\"trend_index\";s:3:\"243\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:343;a:14:{s:2:\"id\";s:4:\"9965\";s:5:\"title\";s:30:\"Classic | Register | Subscribe\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_moon_small.png\";s:12:\"tmpl_created\";s:10:\"1547842174\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"470\";s:11:\"trend_index\";s:3:\"412\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:344;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"137\";s:11:\"trend_index\";s:3:\"173\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:345;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"248\";s:11:\"trend_index\";s:3:\"232\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:346;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"101\";s:11:\"trend_index\";s:2:\"86\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:347;a:14:{s:2:\"id\";s:4:\"9995\";s:5:\"title\";s:27:\"Slide In | Sale | Christmas\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_christmas_small.png\";s:12:\"tmpl_created\";s:10:\"1547844802\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-christmas/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"553\";s:11:\"trend_index\";s:3:\"536\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:348;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"205\";s:11:\"trend_index\";s:3:\"260\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:349;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"68\";s:11:\"trend_index\";s:2:\"50\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:350;a:14:{s:2:\"id\";s:5:\"10016\";s:5:\"title\";s:16:\"Hello Bar | Sale\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Hello-Bar_Promotion_bag_small.png\";s:12:\"tmpl_created\";s:10:\"1547845062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/hello-bar-sale/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"554\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:351;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"130\";s:11:\"trend_index\";s:3:\"154\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:352;a:14:{s:2:\"id\";s:5:\"10026\";s:5:\"title\";s:46:\"Classic | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_register_small.png\";s:12:\"tmpl_created\";s:10:\"1547845205\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"462\";s:11:\"trend_index\";s:3:\"424\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:353;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"226\";s:11:\"trend_index\";s:3:\"266\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:354;a:14:{s:2:\"id\";s:5:\"10036\";s:5:\"title\";s:43:\"Full Screen | Sale | Promotion | Headphones\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_sale_head_small.png\";s:12:\"tmpl_created\";s:10:\"1547845409\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-sale-promotion/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"491\";s:11:\"trend_index\";s:3:\"405\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:355;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"194\";s:11:\"trend_index\";s:3:\"234\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:356;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"380\";s:11:\"trend_index\";s:3:\"444\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:357;a:14:{s:2:\"id\";s:5:\"10057\";s:5:\"title\";s:48:\"Hello Bar | Register | Subscribe | Gym | Fitness\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/hello-bar_register_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547847938\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/hello-bar-register-subscribe/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"545\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:358;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"294\";s:11:\"trend_index\";s:3:\"270\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:359;a:14:{s:2:\"id\";s:5:\"10067\";s:5:\"title\";s:31:\"Fly In | Announcement | Cookies\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/fly-in_cookie_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547848075\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/fly-in-announcement/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"463\";s:11:\"trend_index\";s:3:\"470\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:360;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"412\";s:11:\"trend_index\";s:3:\"462\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:361;a:14:{s:2:\"id\";s:5:\"10077\";s:5:\"title\";s:29:\"Fly In | Register | Subscribe\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_register_blue_small.png\";s:12:\"tmpl_created\";s:10:\"1547848197\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/fly-in-register-subscribe/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"451\";s:11:\"trend_index\";s:3:\"370\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:362;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:2:\"93\";s:11:\"trend_index\";s:2:\"90\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:363;a:14:{s:2:\"id\";s:5:\"10087\";s:5:\"title\";s:25:\"Full Screen | Login | Spa\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2019/01/full-screen_login_spa_small.png\";s:12:\"tmpl_created\";s:10:\"1547848301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/full-screen-login-spa/?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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"497\";s:11:\"trend_index\";s:3:\"366\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:364;a:14:{s:2:\"id\";s:4:\"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\";s:10:\"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\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"254\";s:11:\"trend_index\";s:3:\"263\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:365;a:14:{s:2:\"id\";s:5:\"10097\";s:5:\"title\";s:37:\"Classic | Register | Subscribe | Lego\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_lego_small.png\";s:12:\"tmpl_created\";s:10:\"1547848411\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/classic-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:1:\"0\";s:16:\"popularity_index\";s:3:\"513\";s:11:\"trend_index\";s:3:\"540\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:366;a:14:{s:2:\"id\";s:4:\"1190\";s:5:\"title\";s:26:\"Landing Page &#8211; Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp2-l.png\";s:12:\"tmpl_created\";s:10:\"1490707391\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/landing-page-hotel/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:2:\"10\";s:11:\"trend_index\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:367;a:14:{s:2:\"id\";s:4:\"9816\";s:5:\"title\";s:30:\"Classic | Sale | Gym | Fitness\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2019/01/classic_sale_sport_small.png\";s:12:\"tmpl_created\";s:10:\"1547991876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-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:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"517\";s:11:\"trend_index\";s:3:\"423\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:368;a:14:{s:2:\"id\";s:4:\"9602\";s:5:\"title\";s:35:\"Bottom Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2019/01/Bottombar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546964559\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/bottom-bar-announcement-01/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"1\";s:16:\"popularity_index\";s:3:\"483\";s:11:\"trend_index\";s:3:\"511\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:369;a:14:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:27:\"Homepage &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0016.png\";s:12:\"tmpl_created\";s:10:\"1470829872\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-restaurant/?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\",\"Homepage\",\"Restaurant\"]\";s:10:\"menu_order\";s:1:\"2\";s:16:\"popularity_index\";s:1:\"2\";s:11:\"trend_index\";s:1:\"2\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:370;a:14:{s:2:\"id\";s:3:\"463\";s:5:\"title\";s:22:\"Homepage &#8211; Study\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0022.png\";s:12:\"tmpl_created\";s:10:\"1477388340\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/homepage-study/?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:\"[\"Education\",\"Homepage\",\"Study\"]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:1:\"4\";s:11:\"trend_index\";s:1:\"4\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:371;a:14:{s:2:\"id\";s:5:\"10277\";s:5:\"title\";s:36:\"Bottom Bar | Promotion | Sale | Book\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/book_small.png\";s:12:\"tmpl_created\";s:10:\"1548055999\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/bottom-bar-promotion-book/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"3\";s:16:\"popularity_index\";s:3:\"525\";s:11:\"trend_index\";s:3:\"542\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:372;a:14:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:23:\"Homepage &#8211; Agency\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0019.png\";s:12:\"tmpl_created\";s:10:\"1470826567\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/homepage-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:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:1:\"3\";s:11:\"trend_index\";s:1:\"3\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:373;a:14:{s:2:\"id\";s:4:\"9903\";s:5:\"title\";s:34:\"Bottom Bar | Promotion | Olive Oil\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2019/01/bottom-bar_promotion_olive_small.png\";s:12:\"tmpl_created\";s:10:\"1547838896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/bottom-bar-promotion/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"4\";s:16:\"popularity_index\";s:3:\"540\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:374;a:14:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:19:\"Product &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0003.png\";s:12:\"tmpl_created\";s:10:\"1470829879\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/product-app/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"5\";s:16:\"popularity_index\";s:2:\"17\";s:11:\"trend_index\";s:1:\"6\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:375;a:14:{s:2:\"id\";s:3:\"519\";s:5:\"title\";s:24:\"Homepage &#8211; Fitness\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0023.png\";s:12:\"tmpl_created\";s:10:\"1477388808\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-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:45:\"[\"Fitness\",\"Gym\",\"Health\",\"Homepage\",\"Sport\"]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:1:\"8\";s:11:\"trend_index\";s:1:\"8\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:376;a:14:{s:2:\"id\";s:5:\"10549\";s:5:\"title\";s:33:\"Bottom Bar | Register | Subscribe\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/com_small.png\";s:12:\"tmpl_created\";s:10:\"1547967595\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/bottom-bar-register-subscribe/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"6\";s:16:\"popularity_index\";s:3:\"515\";s:11:\"trend_index\";s:3:\"454\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:377;a:14:{s:2:\"id\";s:4:\"1504\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app2.png\";s:12:\"tmpl_created\";s:10:\"1494352112\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-3/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:3:\"145\";s:11:\"trend_index\";s:3:\"101\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:378;a:14:{s:2:\"id\";s:4:\"9139\";s:5:\"title\";s:25:\"Homepage &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/07/Get_Started_250.png\";s:12:\"tmpl_created\";s:10:\"1532949924\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-business/?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:167:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"marketing campaign\",\"marketing landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:1:\"7\";s:16:\"popularity_index\";s:1:\"6\";s:11:\"trend_index\";s:1:\"5\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"1\";}i:379;a:14:{s:2:\"id\";s:4:\"1503\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app1.png\";s:12:\"tmpl_created\";s:10:\"1494352113\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-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:2:\"[]\";s:10:\"menu_order\";s:1:\"8\";s:16:\"popularity_index\";s:3:\"151\";s:11:\"trend_index\";s:3:\"136\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:380;a:14:{s:2:\"id\";s:5:\"10529\";s:5:\"title\";s:36:\"Classic | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/icon_small.png\";s:12:\"tmpl_created\";s:10:\"1548046309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-announcement/?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\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"461\";s:11:\"trend_index\";s:3:\"448\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:381;a:14:{s:2:\"id\";s:4:\"1634\";s:5:\"title\";s:33:\"Landing Page &#8211; Chiropractor\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Chiropractor.png\";s:12:\"tmpl_created\";s:10:\"1494352119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-chiropractor/?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:2:\"[]\";s:10:\"menu_order\";s:1:\"9\";s:16:\"popularity_index\";s:3:\"211\";s:11:\"trend_index\";s:3:\"181\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:382;a:14:{s:2:\"id\";s:3:\"487\";s:5:\"title\";s:29:\"Landing Page &#8211; Vacation\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0021.png\";s:12:\"tmpl_created\";s:10:\"1477388357\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-vacation/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"10\";s:16:\"popularity_index\";s:2:\"22\";s:11:\"trend_index\";s:2:\"12\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:383;a:14:{s:2:\"id\";s:3:\"855\";s:5:\"title\";s:37:\"Landing Page &#8211; Personal Trainer\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Personal-Trainer.png\";s:12:\"tmpl_created\";s:10:\"1494352061\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/landing-page-personal-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:2:\"[]\";s:10:\"menu_order\";s:2:\"11\";s:16:\"popularity_index\";s:3:\"228\";s:11:\"trend_index\";s:3:\"213\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:384;a:14:{s:2:\"id\";s:3:\"955\";s:5:\"title\";s:31:\"Landing Page &#8211; Law Office\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Law-Office.png\";s:12:\"tmpl_created\";s:10:\"1494352069\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-law-office/?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:31:\"[\"Landing Page\",\"Law\",\"Office\"]\";s:10:\"menu_order\";s:2:\"12\";s:16:\"popularity_index\";s:3:\"148\";s:11:\"trend_index\";s:3:\"112\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:385;a:14:{s:2:\"id\";s:4:\"9373\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 5\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/11/conference-250.png\";s:12:\"tmpl_created\";s:10:\"1542811219\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-5/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"13\";s:16:\"popularity_index\";s:3:\"242\";s:11:\"trend_index\";s:3:\"184\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:386;a:14:{s:2:\"id\";s:3:\"974\";s:5:\"title\";s:28:\"Landing Page &#8211; Stylist\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/03/Landing-Page-Stylist.png\";s:12:\"tmpl_created\";s:10:\"1494352071\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-stylist/?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:146:\"[\"cosmetics\",\"fashion\",\"girly\",\"hairdresser\",\"lifestyle\",\"makeup\",\"manicure\",\"pedicure\",\"products\",\"salon\",\"Shop\",\"skincare\",\"stylist\",\"wellness\"]\";s:10:\"menu_order\";s:2:\"14\";s:16:\"popularity_index\";s:3:\"281\";s:11:\"trend_index\";s:3:\"281\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:387;a:14:{s:2:\"id\";s:3:\"754\";s:5:\"title\";s:25:\"Services &#8211; Interior\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-Services.png\";s:12:\"tmpl_created\";s:10:\"1485269691\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/services-interior/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"15\";s:16:\"popularity_index\";s:3:\"252\";s:11:\"trend_index\";s:3:\"183\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:388;a:14:{s:2:\"id\";s:3:\"752\";s:5:\"title\";s:24:\"Contact &#8211; Interior\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-contact.png\";s:12:\"tmpl_created\";s:10:\"1485269737\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/contact-interior/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"16\";s:16:\"popularity_index\";s:3:\"274\";s:11:\"trend_index\";s:3:\"251\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:389;a:14:{s:2:\"id\";s:5:\"10413\";s:5:\"title\";s:28:\"Classic | Content Lock | Pop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/hot_small.png\";s:12:\"tmpl_created\";s:10:\"1547961774\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-content-lock/?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\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"534\";s:11:\"trend_index\";s:3:\"499\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:390;a:14:{s:2:\"id\";s:3:\"753\";s:5:\"title\";s:22:\"About &#8211; Interior\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/01/Interior-About.png\";s:12:\"tmpl_created\";s:10:\"1485269710\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-interior/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"17\";s:16:\"popularity_index\";s:3:\"263\";s:11:\"trend_index\";s:3:\"219\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:391;a:14:{s:2:\"id\";s:3:\"751\";s:5:\"title\";s:25:\"Homepage &#8211; Interior\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/01/interior-home.png\";s:12:\"tmpl_created\";s:10:\"1485269743\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-interior/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"220\";s:11:\"trend_index\";s:3:\"214\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:392;a:14:{s:2:\"id\";s:5:\"10047\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547847757\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-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:2:\"[]\";s:10:\"menu_order\";s:2:\"18\";s:16:\"popularity_index\";s:3:\"454\";s:11:\"trend_index\";s:3:\"475\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:393;a:14:{s:2:\"id\";s:5:\"10223\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/welcome_small.png\";s:12:\"tmpl_created\";s:10:\"1547887343\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-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:2:\"[]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:3:\"444\";s:11:\"trend_index\";s:3:\"419\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:394;a:14:{s:2:\"id\";s:4:\"2402\";s:5:\"title\";s:32:\"Homepage &#8211; Interior Design\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2017/09/Interior.png\";s:12:\"tmpl_created\";s:10:\"1506441447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-interior-design/?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:193:\"[\"Architecture\",\"building\",\"business\",\"Creative\",\"exterior design\",\"furniture design\",\"Gallery\",\"garden design\",\"house\",\"interior design\",\"landscape design\",\"multipurpose\",\"portfolio\",\"studio\"]\";s:10:\"menu_order\";s:2:\"19\";s:16:\"popularity_index\";s:2:\"59\";s:11:\"trend_index\";s:2:\"92\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:395;a:14:{s:2:\"id\";s:5:\"10403\";s:5:\"title\";s:15:\"Classic | Login\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_small.png\";s:12:\"tmpl_created\";s:10:\"1548056371\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-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:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"479\";s:11:\"trend_index\";s:3:\"391\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:396;a:14:{s:2:\"id\";s:4:\"3626\";s:5:\"title\";s:30:\"Snowboard Site &#8211; Contact\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/3.png\";s:12:\"tmpl_created\";s:10:\"1513513193\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/snowboard-site-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:2:\"[]\";s:10:\"menu_order\";s:2:\"20\";s:16:\"popularity_index\";s:3:\"219\";s:11:\"trend_index\";s:3:\"182\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:397;a:14:{s:2:\"id\";s:4:\"3632\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Services\";s:9:\"thumbnail\";s:62:\"https://library.elementor.com/wp-content/uploads/2017/12/2.png\";s:12:\"tmpl_created\";s:10:\"1513513171\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-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:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"191\";s:11:\"trend_index\";s:3:\"118\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:398;a:14:{s:2:\"id\";s:4:\"9913\";s:5:\"title\";s:27:\"Classic | Login | Christmas\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/log_small.png\";s:12:\"tmpl_created\";s:10:\"1547841430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/popups/classic-login-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:2:\"[]\";s:10:\"menu_order\";s:2:\"21\";s:16:\"popularity_index\";s:3:\"478\";s:11:\"trend_index\";s:3:\"467\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:399;a:14:{s:2:\"id\";s:4:\"3619\";s:5:\"title\";s:31:\"Snowboard Site &#8211; Homepage\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2017/12/home.png\";s:12:\"tmpl_created\";s:10:\"1513513137\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/snowboard-site-homepage/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"22\";s:16:\"popularity_index\";s:3:\"209\";s:11:\"trend_index\";s:3:\"161\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:400;a:14:{s:2:\"id\";s:4:\"9425\";s:5:\"title\";s:38:\"Black Friday &#8211;  80&#8217;s style\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/11/unnamed-file.png\";s:12:\"tmpl_created\";s:10:\"1542901234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/black-friday-80s-style/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"23\";s:16:\"popularity_index\";s:3:\"307\";s:11:\"trend_index\";s:3:\"246\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:401;a:14:{s:2:\"id\";s:4:\"9592\";s:5:\"title\";s:26:\"Classic | Promotion | Sale\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/Classic_Promotion_small_01.png\";s:12:\"tmpl_created\";s:10:\"1546963720\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/classic-promotion-01/?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\";s:2:\"26\";s:16:\"popularity_index\";s:3:\"490\";s:11:\"trend_index\";s:3:\"513\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:402;a:14:{s:2:\"id\";s:5:\"10210\";s:5:\"title\";s:29:\"Classic | Promotion | Webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547886103\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-promotion-webinar/?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\";s:2:\"27\";s:16:\"popularity_index\";s:3:\"551\";s:11:\"trend_index\";s:3:\"533\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:403;a:14:{s:2:\"id\";s:4:\"9879\";s:5:\"title\";s:38:\"Classic | Register | Subscribe | Leads\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/dog_small.png\";s:12:\"tmpl_created\";s:10:\"1547838416\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/classic-register-subscribe/?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\";s:2:\"31\";s:16:\"popularity_index\";s:3:\"498\";s:11:\"trend_index\";s:3:\"420\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:404;a:14:{s:2:\"id\";s:4:\"9731\";s:5:\"title\";s:26:\"Classic | Sale | Promotion\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/icecream_small.png\";s:12:\"tmpl_created\";s:10:\"1547976166\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/popups/classic-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:2:\"[]\";s:10:\"menu_order\";s:2:\"34\";s:16:\"popularity_index\";s:3:\"493\";s:11:\"trend_index\";s:3:\"485\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:405;a:14:{s:2:\"id\";s:5:\"10297\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/01/s_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056099\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-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:2:\"[]\";s:10:\"menu_order\";s:2:\"35\";s:16:\"popularity_index\";s:3:\"471\";s:11:\"trend_index\";s:3:\"507\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:406;a:14:{s:2:\"id\";s:5:\"10393\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/blue_small.png\";s:12:\"tmpl_created\";s:10:\"1548056682\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-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:2:\"[]\";s:10:\"menu_order\";s:2:\"36\";s:16:\"popularity_index\";s:3:\"522\";s:11:\"trend_index\";s:3:\"490\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:407;a:14:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:20:\"Homepage &#8211; App\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0004.png\";s:12:\"tmpl_created\";s:10:\"1470829868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/homepage-app/?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:\"[\"App\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"37\";s:16:\"popularity_index\";s:1:\"1\";s:11:\"trend_index\";s:1:\"9\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:408;a:14:{s:2:\"id\";s:5:\"10579\";s:5:\"title\";s:14:\"Classic | Sale\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/sale1_small.png\";s:12:\"tmpl_created\";s:10:\"1547967887\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/popups/classic-sale-8/?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\";s:2:\"38\";s:16:\"popularity_index\";s:3:\"512\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:409;a:14:{s:2:\"id\";s:3:\"777\";s:5:\"title\";s:28:\"Homepage &#8211; Coffee Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/01/rest-home.jpg\";s:12:\"tmpl_created\";s:10:\"1485273092\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/homepage-coffee-shop/?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:41:\"[\"Coffee\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"38\";s:16:\"popularity_index\";s:2:\"79\";s:11:\"trend_index\";s:3:\"226\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:410;a:14:{s:2:\"id\";s:4:\"2404\";s:5:\"title\";s:24:\"Homepage &#8211; Product\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/09/product.png\";s:12:\"tmpl_created\";s:10:\"1506441452\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/homepage-product/?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:103:\"[\"business\",\"colorful\",\"ecommerce\",\"flat\",\"mobile\",\"modern\",\"responsive\",\"retina\",\"Shop\",\"woocommerce\"]\";s:10:\"menu_order\";s:2:\"39\";s:16:\"popularity_index\";s:2:\"84\";s:11:\"trend_index\";s:3:\"188\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:411;a:14:{s:2:\"id\";s:3:\"492\";s:5:\"title\";s:25:\"Homepage &#8211; Law firm\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0024.png\";s:12:\"tmpl_created\";s:10:\"1477388365\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/homepage-law-firm/?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:25:\"[\"Firm\",\"Homepage\",\"Law\"]\";s:10:\"menu_order\";s:2:\"40\";s:16:\"popularity_index\";s:1:\"7\";s:11:\"trend_index\";s:2:\"18\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:412;a:14:{s:2:\"id\";s:4:\"3451\";s:5:\"title\";s:39:\"Homepage &#8211; Goodness meal services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/11/goodness-featured-image.png\";s:12:\"tmpl_created\";s:10:\"1512054116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/homepage-goodness-meal-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:2:\"[]\";s:10:\"menu_order\";s:2:\"41\";s:16:\"popularity_index\";s:3:\"143\";s:11:\"trend_index\";s:3:\"206\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:413;a:14:{s:2:\"id\";s:4:\"2152\";s:5:\"title\";s:26:\"Homepage &#8211; Cake Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-home.png\";s:12:\"tmpl_created\";s:10:\"1499774132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/homepage-cake-shop/?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:\"[\"Cake\",\"Homepage\",\"Restaurant\",\"Shop\"]\";s:10:\"menu_order\";s:2:\"42\";s:16:\"popularity_index\";s:3:\"244\";s:11:\"trend_index\";s:3:\"375\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:414;a:14:{s:2:\"id\";s:4:\"1068\";s:5:\"title\";s:27:\"Homepage &#8211; Copywriter\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/copywriter.png\";s:12:\"tmpl_created\";s:10:\"1488805928\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/homepage-copywriter/?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:25:\"[\"Copywriter\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"126\";s:11:\"trend_index\";s:3:\"297\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:415;a:14:{s:2:\"id\";s:5:\"10180\";s:5:\"title\";s:21:\"Fly In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_small.png\";s:12:\"tmpl_created\";s:10:\"1548045309\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-announcement-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:2:\"[]\";s:10:\"menu_order\";s:2:\"43\";s:16:\"popularity_index\";s:3:\"511\";s:11:\"trend_index\";s:3:\"531\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:416;a:14:{s:2:\"id\";s:4:\"2813\";s:5:\"title\";s:32:\"Homepage &#8211; Creative Agency\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2017/11/Creative-Agency-–-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1509615049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/homepage-creative-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:32:\"[\"Agency\",\"Creative\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"44\";s:16:\"popularity_index\";s:2:\"64\";s:11:\"trend_index\";s:3:\"122\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:417;a:14:{s:2:\"id\";s:3:\"728\";s:5:\"title\";s:33:\"Homepage &#8211; Delivery Company\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/01/delivery-company-home-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485269993\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/homepage-delivery-company/?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:\"[\"Delivery\",\"Homepage\"]\";s:10:\"menu_order\";s:2:\"45\";s:16:\"popularity_index\";s:3:\"170\";s:11:\"trend_index\";s:3:\"394\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:418;a:14:{s:2:\"id\";s:4:\"2403\";s:5:\"title\";s:29:\"Homepage &#8211; Luxury Hotel\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/09/Hotel.png\";s:12:\"tmpl_created\";s:10:\"1506441428\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/homepage-luxury-hotel/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"46\";s:16:\"popularity_index\";s:3:\"174\";s:11:\"trend_index\";s:3:\"299\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:419;a:14:{s:2:\"id\";s:4:\"1903\";s:5:\"title\";s:20:\"One Page &#8211; Spa\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/06/spa.png\";s:12:\"tmpl_created\";s:10:\"1496822325\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/one-page-spa/?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:132:\"[\"beauty\",\"care\",\"girly\",\"hair\",\"Health\",\"hospitality\",\"massage\",\"medical\",\"parlor\",\"physiotherapy\",\"salon\",\"spa\",\"wellness\",\"yoga\"]\";s:10:\"menu_order\";s:2:\"47\";s:16:\"popularity_index\";s:3:\"123\";s:11:\"trend_index\";s:3:\"230\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:420;a:14:{s:2:\"id\";s:4:\"2123\";s:5:\"title\";s:33:\"One Page &#8211; Architect Office\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/06/architect.png\";s:12:\"tmpl_created\";s:10:\"1499772989\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/one-page-architect-office/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"48\";s:16:\"popularity_index\";s:1:\"9\";s:11:\"trend_index\";s:2:\"11\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:421;a:14:{s:2:\"id\";s:4:\"1888\";s:5:\"title\";s:32:\"One Page &#8211; Creative Meetup\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2017/06/creative-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822319\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/one-page-creative-meetup/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"49\";s:16:\"popularity_index\";s:3:\"166\";s:11:\"trend_index\";s:3:\"306\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:422;a:14:{s:2:\"id\";s:4:\"1880\";s:5:\"title\";s:24:\"One Page &#8211; Wedding\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/06/wedding.png\";s:12:\"tmpl_created\";s:10:\"1496822317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/one-page-wedding/?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:82:\"[\"bride\",\"ceremony\",\"cute\",\"event\",\"fancy\",\"girly\",\"groom\",\"guestbook\",\"marriage\"]\";s:10:\"menu_order\";s:2:\"50\";s:16:\"popularity_index\";s:3:\"341\";s:11:\"trend_index\";s:3:\"436\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:423;a:14:{s:2:\"id\";s:4:\"1891\";s:5:\"title\";s:35:\"One Page &#8211; Textile Convention\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/06/textile-meetup.png\";s:12:\"tmpl_created\";s:10:\"1496822323\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/one-page-textile-convention/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"51\";s:16:\"popularity_index\";s:3:\"313\";s:11:\"trend_index\";s:3:\"422\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:424;a:14:{s:2:\"id\";s:4:\"1885\";s:5:\"title\";s:29:\"One Page &#8211; Yacht Rental\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/06/yacht-home.png\";s:12:\"tmpl_created\";s:10:\"1496822321\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/one-page-yacht-rental/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"52\";s:16:\"popularity_index\";s:3:\"135\";s:11:\"trend_index\";s:3:\"236\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:425;a:14:{s:2:\"id\";s:4:\"2723\";s:5:\"title\";s:34:\"Portfolio &#8211; Graphic Designer\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/11/Graphic-Designer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509633883\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-graphic-designer/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"53\";s:16:\"popularity_index\";s:3:\"129\";s:11:\"trend_index\";s:3:\"199\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:426;a:14:{s:2:\"id\";s:4:\"2145\";s:5:\"title\";s:30:\"About &#8211; Delivery Company\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-about.png\";s:12:\"tmpl_created\";s:10:\"1499774125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/about-delivery-company/?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:10:\"[\"moving\"]\";s:10:\"menu_order\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"261\";s:11:\"trend_index\";s:3:\"289\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:427;a:14:{s:2:\"id\";s:5:\"10005\";s:5:\"title\";s:38:\"Fly In | Promotion | Spa | Body Lotion\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/01/Flyin_lotion_small.png\";s:12:\"tmpl_created\";s:10:\"1547844909\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/popups/fly-in-promotion-2/?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\";s:2:\"54\";s:16:\"popularity_index\";s:3:\"535\";s:11:\"trend_index\";s:3:\"506\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:428;a:14:{s:2:\"id\";s:4:\"2155\";s:5:\"title\";s:23:\"About &#8211; Cake Shop\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-about.png\";s:12:\"tmpl_created\";s:10:\"1499774130\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/about-cake-shop/?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:8:\"[\"Food\"]\";s:10:\"menu_order\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"315\";s:11:\"trend_index\";s:3:\"392\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:429;a:14:{s:2:\"id\";s:4:\"9975\";s:5:\"title\";s:24:\"Fly In | Promotion | App\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2019/01/flyin_webinar_app_small.png\";s:12:\"tmpl_created\";s:10:\"1547842284\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/fly-in-promotion-webinar/?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\";s:2:\"55\";s:16:\"popularity_index\";s:3:\"550\";s:11:\"trend_index\";s:3:\"543\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:430;a:14:{s:2:\"id\";s:4:\"1085\";s:5:\"title\";s:21:\"About &#8211; Startup\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2017/03/Startup.png\";s:12:\"tmpl_created\";s:10:\"1488810874\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/about-startup/?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:\"[\"About\",\"Startup\"]\";s:10:\"menu_order\";s:2:\"56\";s:16:\"popularity_index\";s:1:\"5\";s:11:\"trend_index\";s:1:\"7\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:431;a:14:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:22:\"About &#8211; Personal\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0010.png\";s:12:\"tmpl_created\";s:10:\"1470820447\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/about-personal/?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:20:\"[\"About\",\"Personal\"]\";s:10:\"menu_order\";s:2:\"57\";s:16:\"popularity_index\";s:2:\"18\";s:11:\"trend_index\";s:2:\"25\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:432;a:14:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:16:\"About &#8211; CV\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0018.png\";s:12:\"tmpl_created\";s:10:\"1470829785\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:98:\"https://library.elementor.com/about-cv/?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:\"[\"creative portfolio\",\"Personal\",\"portfolio\",\"professional\",\"resume\",\"vcard\"]\";s:10:\"menu_order\";s:2:\"58\";s:16:\"popularity_index\";s:2:\"26\";s:11:\"trend_index\";s:2:\"60\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:433;a:14:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:25:\"About &#8211; Art Gallery\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0009.png\";s:12:\"tmpl_created\";s:10:\"1470820463\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/about-art-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:25:\"[\"About\",\"Art\",\"Gallery\"]\";s:10:\"menu_order\";s:2:\"59\";s:16:\"popularity_index\";s:2:\"13\";s:11:\"trend_index\";s:2:\"14\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:434;a:14:{s:2:\"id\";s:5:\"10329\";s:5:\"title\";s:25:\"Fly In | Sale | Promotion\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/01/organic_small.png\";s:12:\"tmpl_created\";s:10:\"1547893478\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/fly-in-sale-promotion/?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\";s:2:\"59\";s:16:\"popularity_index\";s:3:\"552\";s:11:\"trend_index\";s:3:\"527\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:435;a:14:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:26:\"About &#8211; Architecture\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0008.png\";s:12:\"tmpl_created\";s:10:\"1470829766\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/about-architecture/?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:24:\"[\"About\",\"Architecture\"]\";s:10:\"menu_order\";s:2:\"60\";s:16:\"popularity_index\";s:2:\"15\";s:11:\"trend_index\";s:2:\"21\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:436;a:14:{s:2:\"id\";s:4:\"9650\";s:5:\"title\";s:36:\"Fly In | Register | Subscribe | Sale\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2019/01/Fly-In_Register_small_01a.png\";s:12:\"tmpl_created\";s:10:\"1547007598\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/fly-in-register_big-01/?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\";s:2:\"60\";s:16:\"popularity_index\";s:3:\"538\";s:11:\"trend_index\";s:3:\"539\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:437;a:14:{s:2:\"id\";s:4:\"2802\";s:5:\"title\";s:38:\"Portfolio &#8211; Fashion Photographer\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2017/11/Fashion-photographer-–-Portfolio.png\";s:12:\"tmpl_created\";s:10:\"1509615440\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/portfolio-fashion-photographer/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"61\";s:16:\"popularity_index\";s:3:\"155\";s:11:\"trend_index\";s:3:\"261\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:438;a:14:{s:2:\"id\";s:4:\"2828\";s:5:\"title\";s:35:\"Landing Page &#8211; Law Convention\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2017/11/Law-Convention-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/landing-page-law-convention/?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:\"[\"Convention\",\"Landing Page\",\"Law\"]\";s:10:\"menu_order\";s:2:\"62\";s:16:\"popularity_index\";s:3:\"282\";s:11:\"trend_index\";s:3:\"379\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:439;a:14:{s:2:\"id\";s:5:\"10200\";s:5:\"title\";s:33:\"Full Screen | Content Lock | Wine\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/lock_wine_small.png\";s:12:\"tmpl_created\";s:10:\"1548055635\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/full-screen-content-lock/?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\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"530\";s:11:\"trend_index\";s:3:\"492\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:440;a:14:{s:2:\"id\";s:4:\"1461\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-1.png\";s:12:\"tmpl_created\";s:10:\"1494352121\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-1/?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:127:\"[\"App\",\"author\",\"book\",\"brochure\",\"download\",\"e-book\",\"ebook\",\"marketing\",\"product\",\"publisher\",\"sell online\",\"seo\",\"showcase\"]\";s:10:\"menu_order\";s:2:\"63\";s:16:\"popularity_index\";s:3:\"275\";s:11:\"trend_index\";s:3:\"372\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:441;a:14:{s:2:\"id\";s:5:\"10287\";s:5:\"title\";s:34:\"Full Screen | Register | Subscribe\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/glass_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1547994301\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-2/?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\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"481\";s:11:\"trend_index\";s:3:\"399\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:442;a:14:{s:2:\"id\";s:4:\"1460\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-2.png\";s:12:\"tmpl_created\";s:10:\"1494352124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-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:2:\"[]\";s:10:\"menu_order\";s:2:\"64\";s:16:\"popularity_index\";s:3:\"280\";s:11:\"trend_index\";s:3:\"357\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:443;a:14:{s:2:\"id\";s:4:\"1459\";s:5:\"title\";s:28:\"Landing Page &#8211; Ebook 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Ebook-3.png\";s:12:\"tmpl_created\";s:10:\"1494352125\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-ebook-3/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"65\";s:16:\"popularity_index\";s:3:\"177\";s:11:\"trend_index\";s:3:\"221\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:444;a:14:{s:2:\"id\";s:4:\"1052\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 1\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2017/03/app.png\";s:12:\"tmpl_created\";s:10:\"1488810873\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-mobile-app/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"66\";s:16:\"popularity_index\";s:2:\"23\";s:11:\"trend_index\";s:2:\"31\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:445;a:14:{s:2:\"id\";s:4:\"9889\";s:5:\"title\";s:28:\"Full Screen | Login | Cactus\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/cac_small.png\";s:12:\"tmpl_created\";s:10:\"1547838722\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/full-screen-login/?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\";s:2:\"66\";s:16:\"popularity_index\";s:3:\"539\";s:11:\"trend_index\";s:3:\"535\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:446;a:14:{s:2:\"id\";s:4:\"1505\";s:5:\"title\";s:33:\"Landing Page &#8211; Mobile App 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-app3.png\";s:12:\"tmpl_created\";s:10:\"1494352110\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-mobile-app-4/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"67\";s:16:\"popularity_index\";s:3:\"306\";s:11:\"trend_index\";s:3:\"367\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:447;a:14:{s:2:\"id\";s:3:\"726\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2017/01/convention-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485270062\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/landing-page-conference/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"68\";s:16:\"popularity_index\";s:3:\"333\";s:11:\"trend_index\";s:3:\"377\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:448;a:14:{s:2:\"id\";s:5:\"10362\";s:5:\"title\";s:32:\"Full Screen | Login | Restaurant\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/vip_small.png\";s:12:\"tmpl_created\";s:10:\"1548056253\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/full-screen-login-3/?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\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"484\";s:11:\"trend_index\";s:3:\"431\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:449;a:14:{s:2:\"id\";s:4:\"1613\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 2\";s:9:\"thumbnail\";s:109:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-International-Womens-Day-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-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:2:\"[]\";s:10:\"menu_order\";s:2:\"69\";s:16:\"popularity_index\";s:3:\"343\";s:11:\"trend_index\";s:3:\"453\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:450;a:14:{s:2:\"id\";s:4:\"1612\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 3\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Tech-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-3/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"70\";s:16:\"popularity_index\";s:3:\"353\";s:11:\"trend_index\";s:3:\"355\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:451;a:14:{s:2:\"id\";s:5:\"10454\";s:5:\"title\";s:29:\"Full Screen | Promotion | App\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/appy_small.png\";s:12:\"tmpl_created\";s:10:\"1548056896\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-promotion-app/?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\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"548\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:452;a:14:{s:2:\"id\";s:4:\"1614\";s:5:\"title\";s:33:\"Landing Page &#8211; Conference 4\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Sustainability-Conference.png\";s:12:\"tmpl_created\";s:10:\"1494352131\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-conference-4/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"71\";s:16:\"popularity_index\";s:3:\"291\";s:11:\"trend_index\";s:3:\"344\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:453;a:14:{s:2:\"id\";s:3:\"906\";s:5:\"title\";s:29:\"Landing Page &#8211;  Coacher\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/02/Landin-Page-Coacher.png\";s:12:\"tmpl_created\";s:10:\"1494352066\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-coacher/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"178\";s:11:\"trend_index\";s:3:\"238\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:454;a:14:{s:2:\"id\";s:4:\"9803\";s:5:\"title\";s:41:\"Full Screen | Register | Contact | Meetup\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2019/01/designme_full_small.png\";s:12:\"tmpl_created\";s:10:\"1547831298\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/full-screen-register-contact/?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\";s:2:\"72\";s:16:\"popularity_index\";s:3:\"508\";s:11:\"trend_index\";s:3:\"524\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:455;a:14:{s:2:\"id\";s:5:\"10611\";s:5:\"title\";s:18:\"Full Screen | Sale\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/01/fla_small.png\";s:12:\"tmpl_created\";s:10:\"1547968868\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/full-screen-sale/?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\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"543\";s:11:\"trend_index\";s:3:\"544\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:456;a:14:{s:2:\"id\";s:3:\"879\";s:5:\"title\";s:41:\"Landing Page &#8211; Financial Consultant\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Financial-consultant.png\";s:12:\"tmpl_created\";s:10:\"1494352064\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/landing-page-financial-consultant/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"73\";s:16:\"popularity_index\";s:3:\"192\";s:11:\"trend_index\";s:3:\"359\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:457;a:14:{s:2:\"id\";s:3:\"926\";s:5:\"title\";s:33:\"Landing Page &#8211; Private Chef\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/02/Landing-Page-Private-Chef.png\";s:12:\"tmpl_created\";s:10:\"1494352068\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/landing-page-private-chef/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"74\";s:16:\"popularity_index\";s:3:\"310\";s:11:\"trend_index\";s:3:\"325\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:458;a:14:{s:2:\"id\";s:5:\"10508\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/01/hand_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547964711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/full-screen-welcome-mat-2/?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\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"509\";s:11:\"trend_index\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:459;a:14:{s:2:\"id\";s:4:\"1032\";s:5:\"title\";s:27:\"Landing Page &#8211; Agency\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Agency.png\";s:12:\"tmpl_created\";s:10:\"1488810866\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/landing-page-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:2:\"[]\";s:10:\"menu_order\";s:2:\"75\";s:16:\"popularity_index\";s:3:\"299\";s:11:\"trend_index\";s:3:\"398\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:460;a:14:{s:2:\"id\";s:3:\"730\";s:5:\"title\";s:24:\"Landing Page &#8211; App\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/01/app.-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485273430\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/landing-page-app/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"283\";s:11:\"trend_index\";s:3:\"393\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:461;a:14:{s:2:\"id\";s:4:\"9934\";s:5:\"title\";s:38:\"Full Screen | Welcome Mat | Teddy Bear\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/full_mat_teddy_small.png\";s:12:\"tmpl_created\";s:10:\"1547841787\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/full-screen-welcome-mat/?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\";s:2:\"76\";s:16:\"popularity_index\";s:3:\"506\";s:11:\"trend_index\";s:3:\"460\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:462;a:14:{s:2:\"id\";s:3:\"643\";s:5:\"title\";s:29:\"Landing Page &#8211; Festival\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2016/12/festival.jpg\";s:12:\"tmpl_created\";s:10:\"1481549290\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-festival/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"77\";s:16:\"popularity_index\";s:3:\"327\";s:11:\"trend_index\";s:3:\"400\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:463;a:14:{s:2:\"id\";s:3:\"542\";s:5:\"title\";s:28:\"Landing Page &#8211; Wedding\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/10/0025.png\";s:12:\"tmpl_created\";s:10:\"1477388484\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-wedding/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"78\";s:16:\"popularity_index\";s:2:\"52\";s:11:\"trend_index\";s:3:\"135\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:464;a:14:{s:2:\"id\";s:4:\"9709\";s:5:\"title\";s:25:\"Full Screen | Welcome Mat\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2019/01/Full-Screen_Welcome-Mat_01_small-1.png\";s:12:\"tmpl_created\";s:10:\"1547023834\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/popups/full-screen-welcome-mat-01/?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\";s:2:\"78\";s:16:\"popularity_index\";s:3:\"516\";s:11:\"trend_index\";s:3:\"503\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:465;a:14:{s:2:\"id\";s:4:\"1187\";s:5:\"title\";s:32:\"Landing Page &#8211; Photography\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp1-l.png\";s:12:\"tmpl_created\";s:10:\"1490707385\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-photography/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:2:\"28\";s:11:\"trend_index\";s:2:\"45\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:466;a:14:{s:2:\"id\";s:4:\"9671\";s:5:\"title\";s:34:\"Hello Bar | Announcement | Cookies\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2019/01/Top-Bar_Announcement_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010259\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/hello-bar-announcement-01/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"79\";s:16:\"popularity_index\";s:3:\"489\";s:11:\"trend_index\";s:3:\"464\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:467;a:14:{s:2:\"id\";s:3:\"641\";s:5:\"title\";s:28:\"Landing Page &#8211; Fashion\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/12/fashion-landing-page.jpg\";s:12:\"tmpl_created\";s:10:\"1481549264\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-fashion/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"231\";s:11:\"trend_index\";s:3:\"397\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:468;a:14:{s:2:\"id\";s:5:\"10234\";s:5:\"title\";s:38:\"Hello Bar | Announcement | Maintenance\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548055049\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/popups/hello-bar-announcement/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"80\";s:16:\"popularity_index\";s:3:\"547\";s:11:\"trend_index\";s:3:\"522\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:469;a:14:{s:2:\"id\";s:3:\"189\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0005.png\";s:12:\"tmpl_created\";s:10:\"1470820715\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-tourism/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"81\";s:16:\"popularity_index\";s:2:\"12\";s:11:\"trend_index\";s:2:\"17\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:470;a:14:{s:2:\"id\";s:4:\"1547\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-1.png\";s:12:\"tmpl_created\";s:10:\"1494352115\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-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:2:\"[]\";s:10:\"menu_order\";s:2:\"82\";s:16:\"popularity_index\";s:3:\"266\";s:11:\"trend_index\";s:3:\"307\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:471;a:14:{s:2:\"id\";s:4:\"1546\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-2.png\";s:12:\"tmpl_created\";s:10:\"1494352116\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-3/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"350\";s:11:\"trend_index\";s:3:\"449\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:472;a:14:{s:2:\"id\";s:4:\"9869\";s:5:\"title\";s:28:\"Hello Bar | Promotion | Sale\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/01/ru_small.png\";s:12:\"tmpl_created\";s:10:\"1547837269\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/popups/hello-bar-promotion/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"83\";s:16:\"popularity_index\";s:3:\"544\";s:11:\"trend_index\";s:3:\"537\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:473;a:14:{s:2:\"id\";s:4:\"1545\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Truism-3.png\";s:12:\"tmpl_created\";s:10:\"1494352118\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-4/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"298\";s:11:\"trend_index\";s:3:\"360\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:474;a:14:{s:2:\"id\";s:5:\"10539\";s:5:\"title\";s:19:\"Hello Bar | Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/01/hello_pink_small.png\";s:12:\"tmpl_created\";s:10:\"1548056994\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/hello-bar-register-subscribe-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:2:\"[]\";s:10:\"menu_order\";s:2:\"84\";s:16:\"popularity_index\";s:3:\"527\";s:11:\"trend_index\";s:3:\"514\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:475;a:14:{s:2:\"id\";s:4:\"2714\";s:5:\"title\";s:30:\"Landing Page &#8211; Tourism 5\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2017/11/Vacation-–-Landing-Page.png\";s:12:\"tmpl_created\";s:10:\"1509631782\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/landing-page-tourism-5/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"85\";s:16:\"popularity_index\";s:3:\"296\";s:11:\"trend_index\";s:3:\"330\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:476;a:14:{s:2:\"id\";s:3:\"195\";s:5:\"title\";s:28:\"Landing Page &#8211; Product\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0006.png\";s:12:\"tmpl_created\";s:10:\"1470820765\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-product/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"86\";s:16:\"popularity_index\";s:2:\"30\";s:11:\"trend_index\";s:2:\"65\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:477;a:14:{s:2:\"id\";s:3:\"197\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 1\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0007.png\";s:12:\"tmpl_created\";s:10:\"1470825711\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/landing-page-real-estate/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"87\";s:16:\"popularity_index\";s:2:\"72\";s:11:\"trend_index\";s:3:\"111\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:478;a:14:{s:2:\"id\";s:4:\"1193\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 2\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";s:10:\"1490707422\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-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:2:\"[]\";s:10:\"menu_order\";s:2:\"88\";s:16:\"popularity_index\";s:2:\"40\";s:11:\"trend_index\";s:2:\"70\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:479;a:14:{s:2:\"id\";s:5:\"10147\";s:5:\"title\";s:34:\"Hello Bar | Sale | Promotion | Pop\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/donut_small.png\";s:12:\"tmpl_created\";s:10:\"1548055522\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/hello-bar-sale-promotion/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"541\";s:11:\"trend_index\";s:3:\"530\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:480;a:14:{s:2:\"id\";s:4:\"1415\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-1.png\";s:12:\"tmpl_created\";s:10:\"1494352106\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-3/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"89\";s:16:\"popularity_index\";s:3:\"290\";s:11:\"trend_index\";s:3:\"309\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:481;a:14:{s:2:\"id\";s:4:\"1414\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 4\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-2.png\";s:12:\"tmpl_created\";s:10:\"1494352107\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-4/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"382\";s:11:\"trend_index\";s:3:\"476\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:482;a:14:{s:2:\"id\";s:4:\"9923\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slide-in_ann_italian_small.png\";s:12:\"tmpl_created\";s:10:\"1547841537\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/popups/slide-in-announcement/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"90\";s:16:\"popularity_index\";s:3:\"504\";s:11:\"trend_index\";s:3:\"502\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:483;a:14:{s:2:\"id\";s:4:\"1413\";s:5:\"title\";s:34:\"Landing Page &#8211; Real Estate 5\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/05/Landing-Page-Real-Estate-3.png\";s:12:\"tmpl_created\";s:10:\"1494352109\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/landing-page-real-estate-5/?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:134:\"[\"Agent\",\"business\",\"clean\",\"corporate\",\"flat\",\"google maps\",\"homes\",\"listing\",\"modern\",\"real estate\",\"realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"356\";s:11:\"trend_index\";s:3:\"435\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:484;a:14:{s:2:\"id\";s:5:\"10117\";s:5:\"title\";s:23:\"Slide In | Announcement\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/white_small.png\";s:12:\"tmpl_created\";s:10:\"1548066998\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-announcement-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:2:\"[]\";s:10:\"menu_order\";s:2:\"91\";s:16:\"popularity_index\";s:3:\"518\";s:11:\"trend_index\";s:3:\"451\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:485;a:14:{s:2:\"id\";s:4:\"1573\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-02.png\";s:12:\"tmpl_created\";s:10:\"1494352133\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-1/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"383\";s:11:\"trend_index\";s:3:\"434\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:486;a:14:{s:2:\"id\";s:4:\"9826\";s:5:\"title\";s:33:\"Slide In | Announcement | webinar\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/01/web_small-2.png\";s:12:\"tmpl_created\";s:10:\"1547835513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/popups/slide-in-announcement-webinar/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"92\";s:16:\"popularity_index\";s:3:\"520\";s:11:\"trend_index\";s:3:\"481\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:487;a:14:{s:2:\"id\";s:5:\"10478\";s:5:\"title\";s:18:\"Slide In | Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2019/01/slide_wow_small.png\";s:12:\"tmpl_created\";s:10:\"1548056829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/popups/slide-in-contact/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"472\";s:11:\"trend_index\";s:3:\"446\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:488;a:14:{s:2:\"id\";s:4:\"1572\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-03.png\";s:12:\"tmpl_created\";s:10:\"1494352134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-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:2:\"[]\";s:10:\"menu_order\";s:2:\"93\";s:16:\"popularity_index\";s:3:\"400\";s:11:\"trend_index\";s:3:\"526\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:489;a:14:{s:2:\"id\";s:4:\"1570\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 3\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-01.png\";s:12:\"tmpl_created\";s:10:\"1494352136\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-3/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"94\";s:16:\"popularity_index\";s:3:\"430\";s:11:\"trend_index\";s:3:\"426\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:490;a:14:{s:2:\"id\";s:4:\"1571\";s:5:\"title\";s:29:\"Landing Page &#8211; Coupon 4\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/Coupon-04.png\";s:12:\"tmpl_created\";s:10:\"1494352138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/landing-page-coupon-4/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"95\";s:16:\"popularity_index\";s:3:\"408\";s:11:\"trend_index\";s:3:\"479\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:491;a:14:{s:2:\"id\";s:3:\"192\";s:5:\"title\";s:28:\"Landing Page &#8211; Webinar\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0015.png\";s:12:\"tmpl_created\";s:10:\"1470820734\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/landing-page-webinar/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"96\";s:16:\"popularity_index\";s:2:\"63\";s:11:\"trend_index\";s:3:\"133\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:492;a:14:{s:2:\"id\";s:4:\"2141\";s:5:\"title\";s:32:\"Contact &#8211; Delivery Company\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774122\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/contact-delivery-company/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"97\";s:16:\"popularity_index\";s:3:\"253\";s:11:\"trend_index\";s:3:\"329\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:493;a:14:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Contact &#8211; Modern\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0013.png\";s:12:\"tmpl_created\";s:10:\"1470829828\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/contact-modern/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:2:\"29\";s:11:\"trend_index\";s:2:\"54\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:494;a:14:{s:2:\"id\";s:4:\"9985\";s:5:\"title\";s:20:\"Slide In | Promotion\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_promotion_av_small.png\";s:12:\"tmpl_created\";s:10:\"1547844661\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/popups/slide-in-promotion-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:2:\"[]\";s:10:\"menu_order\";s:2:\"98\";s:16:\"popularity_index\";s:3:\"542\";s:11:\"trend_index\";s:3:\"505\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:495;a:14:{s:2:\"id\";s:3:\"256\";s:5:\"title\";s:26:\"Contact &#8211; Restaurant\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0011.png\";s:12:\"tmpl_created\";s:10:\"1470829796\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/contact-restaurant/?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:2:\"[]\";s:10:\"menu_order\";s:2:\"99\";s:16:\"popularity_index\";s:2:\"78\";s:11:\"trend_index\";s:3:\"162\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:496;a:14:{s:2:\"id\";s:4:\"2150\";s:5:\"title\";s:25:\"Contact &#8211; Cake Shop\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/07/cake-contact.png\";s:12:\"tmpl_created\";s:10:\"1499774127\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-cake-shop/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"100\";s:16:\"popularity_index\";s:2:\"46\";s:11:\"trend_index\";s:2:\"79\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:497;a:14:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:21:\"Contact &#8211; Hotel\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0002.png\";s:12:\"tmpl_created\";s:10:\"1470820471\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/contact-hotel/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"101\";s:16:\"popularity_index\";s:2:\"74\";s:11:\"trend_index\";s:3:\"151\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:498;a:14:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:25:\"Contact &#8211; Corporate\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0012.png\";s:12:\"tmpl_created\";s:10:\"1470248619\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/contact-corporate/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"102\";s:16:\"popularity_index\";s:2:\"11\";s:11:\"trend_index\";s:2:\"13\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:499;a:14:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:23:\"Services &#8211; Moving\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0017.png\";s:12:\"tmpl_created\";s:10:\"1470829889\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/services-moving/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"103\";s:16:\"popularity_index\";s:2:\"21\";s:11:\"trend_index\";s:2:\"24\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:500;a:14:{s:2:\"id\";s:3:\"625\";s:5:\"title\";s:31:\"Services &#8211; Cake Shop Menu\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2016/12/cake-shop-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549196\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/services-cake-shop-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:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"396\";s:11:\"trend_index\";s:3:\"497\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:501;a:14:{s:2:\"id\";s:4:\"9680\";s:5:\"title\";s:23:\"Slide In | Content Lock\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2019/01/Slide-in_Content-lock_small_01.png\";s:12:\"tmpl_created\";s:10:\"1547010967\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/popups/slide-in-content-lock-01/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"104\";s:16:\"popularity_index\";s:3:\"523\";s:11:\"trend_index\";s:3:\"471\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:502;a:14:{s:2:\"id\";s:3:\"187\";s:5:\"title\";s:20:\"Services &#8211; Fun\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0001.png\";s:12:\"tmpl_created\";s:10:\"1470829892\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/services-fun/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:2:\"41\";s:11:\"trend_index\";s:2:\"74\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:503;a:14:{s:2:\"id\";s:4:\"9559\";s:5:\"title\";s:16:\"Slide In | Login\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_login_01_small.png\";s:12:\"tmpl_created\";s:10:\"1546946547\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/popups/slide-in-login-01/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"105\";s:16:\"popularity_index\";s:3:\"459\";s:11:\"trend_index\";s:3:\"326\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:504;a:14:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:27:\"Services &#8211; Consulting\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0014.png\";s:12:\"tmpl_created\";s:10:\"1470829865\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/services-consulting/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:2:\"19\";s:11:\"trend_index\";s:2:\"22\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:505;a:14:{s:2:\"id\";s:4:\"9783\";s:5:\"title\";s:31:\"Slide In | Register | Subscribe\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2019/01/slidein_yellow_small.png\";s:12:\"tmpl_created\";s:10:\"1547831059\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/popups/slide-in-register-subscribe/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"106\";s:16:\"popularity_index\";s:3:\"448\";s:11:\"trend_index\";s:3:\"385\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:506;a:14:{s:2:\"id\";s:3:\"647\";s:5:\"title\";s:33:\"Services &#8211; Coffee Shop Menu\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2016/12/restaurant-menu.jpg\";s:12:\"tmpl_created\";s:10:\"1481549320\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-coffee-shop-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:2:\"[]\";s:10:\"menu_order\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"360\";s:11:\"trend_index\";s:3:\"425\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:507;a:14:{s:2:\"id\";s:4:\"9752\";s:5:\"title\";s:27:\"Slide In | Sale | Promotion\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/01/rush_small.png\";s:12:\"tmpl_created\";s:10:\"1547823982\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/popups/slide-in-sale-promotion/?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\";s:3:\"107\";s:16:\"popularity_index\";s:3:\"519\";s:11:\"trend_index\";s:3:\"494\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"1\";}i:508;a:14:{s:2:\"id\";s:4:\"2138\";s:5:\"title\";s:33:\"Services &#8211; Delivery Company\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/07/delivery-services.png\";s:12:\"tmpl_created\";s:10:\"1499774119\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/services-delivery-company/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"108\";s:16:\"popularity_index\";s:3:\"319\";s:11:\"trend_index\";s:3:\"343\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:509;a:14:{s:2:\"id\";s:3:\"823\";s:5:\"title\";s:19:\"Pricing &#8211; App\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-app.jpg\";s:12:\"tmpl_created\";s:10:\"1485272966\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/pricing-app-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:2:\"[]\";s:10:\"menu_order\";s:3:\"109\";s:16:\"popularity_index\";s:3:\"289\";s:11:\"trend_index\";s:3:\"311\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:510;a:14:{s:2:\"id\";s:3:\"824\";s:5:\"title\";s:24:\"Pricing &#8211; Software\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/01/pricing-software.png\";s:12:\"tmpl_created\";s:10:\"1485272900\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/pricing-software-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:2:\"[]\";s:10:\"menu_order\";s:3:\"110\";s:16:\"popularity_index\";s:3:\"302\";s:11:\"trend_index\";s:3:\"341\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:511;a:14:{s:2:\"id\";s:3:\"825\";s:5:\"title\";s:24:\"Product &#8211; Speakers\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/01/product-page.jpg\";s:12:\"tmpl_created\";s:10:\"1485272513\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/product-speakers/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"111\";s:16:\"popularity_index\";s:3:\"325\";s:11:\"trend_index\";s:3:\"350\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:512;a:14:{s:2:\"id\";s:3:\"245\";s:5:\"title\";s:21:\"Product &#8211; Clean\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2016/08/0020.png\";s:12:\"tmpl_created\";s:10:\"1470829876\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/product-clean/?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:\"[\"fast\",\"minimal\",\"minimalistic\",\"seo\",\"simple\"]\";s:10:\"menu_order\";s:3:\"112\";s:16:\"popularity_index\";s:2:\"57\";s:11:\"trend_index\";s:2:\"93\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:513;a:14:{s:2:\"id\";s:4:\"1075\";s:5:\"title\";s:19:\"Shop &#8211; Sweets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2017/03/Sweets.png\";s:12:\"tmpl_created\";s:10:\"1488810871\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/shop-sweets/?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:154:\"[\"bakery\",\"beverage\",\"business\",\"cafe\",\"candy bar\",\"catering\",\"delivery service\",\"Food\",\"online shop\",\"pastry\",\"Restaurant\",\"store\",\"sweet shop\",\"sweets\"]\";s:10:\"menu_order\";s:3:\"114\";s:16:\"popularity_index\";s:2:\"38\";s:11:\"trend_index\";s:2:\"81\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:514;a:14:{s:2:\"id\";s:4:\"1051\";s:5:\"title\";s:24:\"Blog Post &#8211; Launch\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2017/03/post-cloud.png\";s:12:\"tmpl_created\";s:10:\"1488810869\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/blog-post-launch/?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:210:\"[\"Agency\",\"bootstrap\",\"business\",\"corporate\",\"Landing Page\",\"launch\",\"marketing campaign\",\"marketing landing page\",\"marketing template landing page\",\"product launch\",\"software\",\"Startup\",\"startup landing page\"]\";s:10:\"menu_order\";s:3:\"115\";s:16:\"popularity_index\";s:2:\"20\";s:11:\"trend_index\";s:2:\"19\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:515;a:14:{s:2:\"id\";s:4:\"1245\";s:5:\"title\";s:13:\"Coming Soon 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-1.png\";s:12:\"tmpl_created\";s:10:\"1491207184\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-1/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"116\";s:16:\"popularity_index\";s:3:\"214\";s:11:\"trend_index\";s:3:\"204\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:516;a:14:{s:2:\"id\";s:4:\"1247\";s:5:\"title\";s:13:\"Coming Soon 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-2.png\";s:12:\"tmpl_created\";s:10:\"1491207138\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-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:2:\"[]\";s:10:\"menu_order\";s:3:\"117\";s:16:\"popularity_index\";s:2:\"27\";s:11:\"trend_index\";s:2:\"42\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:517;a:14:{s:2:\"id\";s:4:\"1248\";s:5:\"title\";s:13:\"Coming Soon 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-3.png\";s:12:\"tmpl_created\";s:10:\"1491207050\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-3/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"118\";s:16:\"popularity_index\";s:3:\"330\";s:11:\"trend_index\";s:3:\"353\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:518;a:14:{s:2:\"id\";s:4:\"1249\";s:5:\"title\";s:13:\"Coming Soon 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-4.png\";s:12:\"tmpl_created\";s:10:\"1491207380\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-4/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"119\";s:16:\"popularity_index\";s:3:\"363\";s:11:\"trend_index\";s:3:\"437\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:519;a:14:{s:2:\"id\";s:4:\"1250\";s:5:\"title\";s:13:\"Coming Soon 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-5.png\";s:12:\"tmpl_created\";s:10:\"1491207450\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-5/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"120\";s:16:\"popularity_index\";s:2:\"49\";s:11:\"trend_index\";s:3:\"108\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:520;a:14:{s:2:\"id\";s:4:\"1260\";s:5:\"title\";s:13:\"Coming Soon 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-6.png\";s:12:\"tmpl_created\";s:10:\"1491207507\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-6/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"121\";s:16:\"popularity_index\";s:3:\"364\";s:11:\"trend_index\";s:3:\"376\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:521;a:14:{s:2:\"id\";s:4:\"1261\";s:5:\"title\";s:13:\"Coming Soon 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/04/Coming-Soon-7.png\";s:12:\"tmpl_created\";s:10:\"1491207584\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-7/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"122\";s:16:\"popularity_index\";s:2:\"50\";s:11:\"trend_index\";s:3:\"145\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:522;a:14:{s:2:\"id\";s:4:\"1272\";s:5:\"title\";s:13:\"Coming Soon 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-8.png\";s:12:\"tmpl_created\";s:10:\"1491207674\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-8/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"123\";s:16:\"popularity_index\";s:3:\"239\";s:11:\"trend_index\";s:3:\"335\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:523;a:14:{s:2:\"id\";s:4:\"1279\";s:5:\"title\";s:13:\"Coming Soon 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/03/Coming-Soon-9.png\";s:12:\"tmpl_created\";s:10:\"1491207756\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:103:\"https://library.elementor.com/coming-soon-9/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"124\";s:16:\"popularity_index\";s:2:\"92\";s:11:\"trend_index\";s:3:\"166\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}i:524;a:14:{s:2:\"id\";s:4:\"1745\";s:5:\"title\";s:14:\"Coming Soon 10\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-002.png\";s:12:\"tmpl_created\";s:10:\"1494849745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/coming-soon-10/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"125\";s:16:\"popularity_index\";s:3:\"235\";s:11:\"trend_index\";s:3:\"310\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:525;a:14:{s:2:\"id\";s:4:\"1742\";s:5:\"title\";s:12:\"Login Page 1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-003.png\";s:12:\"tmpl_created\";s:10:\"1494849744\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:100:\"https://library.elementor.com/login-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:2:\"[]\";s:10:\"menu_order\";s:3:\"126\";s:16:\"popularity_index\";s:3:\"346\";s:11:\"trend_index\";s:3:\"445\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:526;a:14:{s:2:\"id\";s:4:\"1748\";s:5:\"title\";s:12:\"Login Page 2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/05/login-001.png\";s:12:\"tmpl_created\";s:10:\"1494849742\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:102:\"https://library.elementor.com/login-page-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:2:\"[]\";s:10:\"menu_order\";s:3:\"127\";s:16:\"popularity_index\";s:3:\"247\";s:11:\"trend_index\";s:3:\"276\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:527;a:14:{s:2:\"id\";s:4:\"3963\";s:5:\"title\";s:32:\"Restaurant Site &#8211; Homepage\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/01/R.HomepageThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284821\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/restaurant-site-homepage/?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:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"128\";s:16:\"popularity_index\";s:3:\"206\";s:11:\"trend_index\";s:3:\"196\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:528;a:14:{s:2:\"id\";s:4:\"3969\";s:5:\"title\";s:28:\"Restaurant Site &#8211; Menu\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/01/R.MenuThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284829\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/restaurant-site-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:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"129\";s:16:\"popularity_index\";s:3:\"349\";s:11:\"trend_index\";s:3:\"339\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:529;a:14:{s:2:\"id\";s:4:\"3966\";s:5:\"title\";s:29:\"Restaurant Site &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/01/R.AboutThumb.png.png\";s:12:\"tmpl_created\";s:10:\"1516284839\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/restaurant-site-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:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"130\";s:16:\"popularity_index\";s:3:\"218\";s:11:\"trend_index\";s:3:\"175\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:530;a:14:{s:2:\"id\";s:4:\"3972\";s:5:\"title\";s:31:\"Restaurant Site &#8211; Contact\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/01/R.ContactThumb.png\";s:12:\"tmpl_created\";s:10:\"1516284847\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/restaurant-site-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:109:\"[\"bar\",\"cafe\",\"cooking\",\"drink\",\"events\",\"fast food\",\"Food\",\"menu\",\"modern\",\"reservation\",\"Shop\",\"snack bar\"]\";s:10:\"menu_order\";s:3:\"131\";s:16:\"popularity_index\";s:3:\"309\";s:11:\"trend_index\";s:3:\"348\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:531;a:14:{s:2:\"id\";s:4:\"2080\";s:5:\"title\";s:27:\"Ski Resort &#8211; Homepage\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508161124\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-homepage/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"132\";s:16:\"popularity_index\";s:3:\"284\";s:11:\"trend_index\";s:3:\"349\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:532;a:14:{s:2:\"id\";s:4:\"2088\";s:5:\"title\";s:24:\"Ski Resort &#8211; About\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-About.png\";s:12:\"tmpl_created\";s:10:\"1508161129\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:106:\"https://library.elementor.com/ski-resort-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:2:\"[]\";s:10:\"menu_order\";s:3:\"133\";s:16:\"popularity_index\";s:3:\"351\";s:11:\"trend_index\";s:3:\"313\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:533;a:14:{s:2:\"id\";s:4:\"2085\";s:5:\"title\";s:27:\"Ski Resort &#8211; Services\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/Ski-Resort-Services.png\";s:12:\"tmpl_created\";s:10:\"1508161134\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/ski-resort-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:2:\"[]\";s:10:\"menu_order\";s:3:\"134\";s:16:\"popularity_index\";s:3:\"403\";s:11:\"trend_index\";s:3:\"382\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:534;a:14:{s:2:\"id\";s:4:\"2462\";s:5:\"title\";s:23:\"Architect &#8211; About\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2017/10/architect-–-about.png\";s:12:\"tmpl_created\";s:10:\"1508243317\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:105:\"https://library.elementor.com/architect-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:2:\"[]\";s:10:\"menu_order\";s:3:\"135\";s:16:\"popularity_index\";s:3:\"285\";s:11:\"trend_index\";s:3:\"287\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:535;a:14:{s:2:\"id\";s:4:\"2362\";s:5:\"title\";s:26:\"Architect &#8211; Projects\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2017/10/Architect-Projects.png\";s:12:\"tmpl_created\";s:10:\"1508243335\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/architect-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:2:\"[]\";s:10:\"menu_order\";s:3:\"136\";s:16:\"popularity_index\";s:3:\"342\";s:11:\"trend_index\";s:3:\"342\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:536;a:14:{s:2:\"id\";s:3:\"614\";s:5:\"title\";s:25:\"Architect &#8211; Contact\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2016/12/architect-contact.jpg\";s:12:\"tmpl_created\";s:10:\"1481549169\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/architect-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:2:\"[]\";s:10:\"menu_order\";s:3:\"137\";s:16:\"popularity_index\";s:3:\"213\";s:11:\"trend_index\";s:3:\"298\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:537;a:14:{s:2:\"id\";s:4:\"2126\";s:5:\"title\";s:37:\"Construction Company &#8211; Homepage\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Home-Page.png\";s:12:\"tmpl_created\";s:10:\"1508325849\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-company-homepage/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"138\";s:16:\"popularity_index\";s:3:\"250\";s:11:\"trend_index\";s:3:\"288\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:538;a:14:{s:2:\"id\";s:4:\"2129\";s:5:\"title\";s:34:\"Construction Company &#8211; About\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-About.png\";s:12:\"tmpl_created\";s:10:\"1508325881\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/construction-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:2:\"[]\";s:10:\"menu_order\";s:3:\"139\";s:16:\"popularity_index\";s:3:\"269\";s:11:\"trend_index\";s:3:\"220\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:539;a:14:{s:2:\"id\";s:4:\"2135\";s:5:\"title\";s:36:\"Construction Company &#8211; Contact\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2017/10/Construction-Company-Contact.png\";s:12:\"tmpl_created\";s:10:\"1508325922\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/construction-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:2:\"[]\";s:10:\"menu_order\";s:3:\"140\";s:16:\"popularity_index\";s:3:\"293\";s:11:\"trend_index\";s:3:\"320\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:540;a:14:{s:2:\"id\";s:4:\"2094\";s:5:\"title\";s:28:\"Plants Shop &#8211; Homepage\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-Home.png\";s:12:\"tmpl_created\";s:10:\"1509621053\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/plants-shop-homepage/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"141\";s:16:\"popularity_index\";s:3:\"257\";s:11:\"trend_index\";s:3:\"316\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:541;a:14:{s:2:\"id\";s:4:\"2120\";s:5:\"title\";s:25:\"Plants Shop &#8211; About\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2017/11/Plants-Shop-About.png\";s:12:\"tmpl_created\";s:10:\"1509631820\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:107:\"https://library.elementor.com/plants-shop-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:2:\"[]\";s:10:\"menu_order\";s:3:\"142\";s:16:\"popularity_index\";s:3:\"297\";s:11:\"trend_index\";s:3:\"225\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:542;a:14:{s:2:\"id\";s:4:\"3153\";s:5:\"title\";s:14:\"Halloween Pack\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/10/halloween.png\";s:12:\"tmpl_created\";s:10:\"1508950132\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:104:\"https://library.elementor.com/halloween-pack/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"143\";s:16:\"popularity_index\";s:3:\"431\";s:11:\"trend_index\";s:3:\"541\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:543;a:14:{s:2:\"id\";s:4:\"3338\";s:5:\"title\";s:31:\"Black Friday &#8211; Nature Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-1.png\";s:12:\"tmpl_created\";s:10:\"1511203351\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-nature-set/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"144\";s:16:\"popularity_index\";s:3:\"394\";s:11:\"trend_index\";s:3:\"493\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:544;a:14:{s:2:\"id\";s:4:\"3339\";s:5:\"title\";s:35:\"Black Friday &#8211; Pop-Styled Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-2.png\";s:12:\"tmpl_created\";s:10:\"1511203636\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/black-friday-pop-styled-set/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"145\";s:16:\"popularity_index\";s:3:\"370\";s:11:\"trend_index\";s:3:\"489\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:545;a:14:{s:2:\"id\";s:4:\"3335\";s:5:\"title\";s:31:\"Black Friday &#8211; Retail Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-4.png\";s:12:\"tmpl_created\";s:10:\"1511203246\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/black-friday-retail-set/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"146\";s:16:\"popularity_index\";s:3:\"368\";s:11:\"trend_index\";s:3:\"477\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:546;a:14:{s:2:\"id\";s:4:\"3340\";s:5:\"title\";s:41:\"Black Friday &#8211; Software Product Set\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2017/11/black-friday-3.png\";s:12:\"tmpl_created\";s:10:\"1511203713\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/black-friday-software-product-set/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"147\";s:16:\"popularity_index\";s:3:\"361\";s:11:\"trend_index\";s:3:\"501\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:547;a:14:{s:2:\"id\";s:4:\"3517\";s:5:\"title\";s:27:\"Christmas &#8211; Gift Shop\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasThumb.png\";s:12:\"tmpl_created\";s:10:\"1513877937\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-gift-shop/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"148\";s:16:\"popularity_index\";s:3:\"398\";s:11:\"trend_index\";s:3:\"480\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:548;a:14:{s:2:\"id\";s:4:\"3734\";s:5:\"title\";s:28:\"Christmas &#8211; Car Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v3.png\";s:12:\"tmpl_created\";s:10:\"1514197794\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/christmas-car-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:2:\"[]\";s:10:\"menu_order\";s:3:\"149\";s:16:\"popularity_index\";s:3:\"393\";s:11:\"trend_index\";s:3:\"472\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:549;a:14:{s:2:\"id\";s:4:\"3764\";s:5:\"title\";s:33:\"Christmas &#8211; Interior Design\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v6.png\";s:12:\"tmpl_created\";s:10:\"1514198234\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/christmas-interior-design/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"150\";s:16:\"popularity_index\";s:3:\"386\";s:11:\"trend_index\";s:3:\"468\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:550;a:14:{s:2:\"id\";s:4:\"3565\";s:5:\"title\";s:27:\"Christmas &#8211; Tree Shop\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2017/12/XmasTreeThumb.png\";s:12:\"tmpl_created\";s:10:\"1514204382\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/christmas-tree-shop/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"151\";s:16:\"popularity_index\";s:3:\"362\";s:11:\"trend_index\";s:3:\"459\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:551;a:14:{s:2:\"id\";s:4:\"3862\";s:5:\"title\";s:35:\"Christmas &#8211; Design Conference\";s:9:\"thumbnail\";s:63:\"https://library.elementor.com/wp-content/uploads/2017/12/q1.png\";s:12:\"tmpl_created\";s:10:\"1514206745\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/christmas-design-conference/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"152\";s:16:\"popularity_index\";s:3:\"339\";s:11:\"trend_index\";s:3:\"415\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:552;a:14:{s:2:\"id\";s:4:\"3777\";s:5:\"title\";s:39:\"Christmas &#8211; Snowboard Competition\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2017/12/cover-lib-v7.png\";s:12:\"tmpl_created\";s:10:\"1514205420\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/christmas-snowboard-competition/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"153\";s:16:\"popularity_index\";s:3:\"355\";s:11:\"trend_index\";s:3:\"439\";s:6:\"is_pro\";s:1:\"1\";s:17:\"has_page_settings\";s:1:\"0\";}i:553;a:14:{s:2:\"id\";s:3:\"420\";s:5:\"title\";s:11:\"Hero UI Kit\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2016/09/library-ui-kit-cover.png\";s:12:\"tmpl_created\";s:10:\"1475067229\";s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:101:\"https://library.elementor.com/hero-ui-kit/?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:2:\"[]\";s:10:\"menu_order\";s:3:\"154\";s:16:\"popularity_index\";s:2:\"16\";s:11:\"trend_index\";s:2:\"27\";s:6:\"is_pro\";s:1:\"0\";s:17:\"has_page_settings\";s:1:\"0\";}}}','no'),(386,'elementor_version','2.5.14','yes'),(388,'themeisle_companion_install','1555177200','yes'),(352,'current_theme','Neve','yes'),(353,'theme_mods_neve','a:47:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:7;s:6:\"footer\";i:11;}s:13:\"ti_prev_theme\";s:15:\"twentyseventeen\";s:18:\"custom_css_post_id\";i:-1;s:19:\"neve_last_menu_item\";s:11:\"search-cart\";s:21:\"neve_body_font_family\";s:0:\"\";s:19:\"neve_body_font_size\";s:92:\"{\"suffix\":{\"mobile\":\"px\",\"tablet\":\"px\",\"desktop\":\"px\"},\"mobile\":16,\"tablet\":16,\"desktop\":15}\";s:22:\"neve_navigation_layout\";s:4:\"left\";s:16:\"neve_theme_color\";s:7:\"#00a4f7\";s:15:\"neve_link_color\";s:7:\"#0366d6\";s:21:\"neve_link_hover_color\";s:7:\"#005bf7\";s:19:\"neve_top_bar_enable\";s:0:\"\";s:19:\"neve_top_bar_layout\";s:12:\"menu-content\";s:27:\"neve_default_sidebar_layout\";s:10:\"full-width\";s:32:\"neve_blog_archive_sidebar_layout\";s:10:\"full-width\";s:31:\"neve_single_post_sidebar_layout\";s:10:\"full-width\";s:24:\"neve_footer_content_type\";s:4:\"text\";s:25:\"neve_headings_font_family\";s:0:\"\";s:24:\"neve_blog_archive_layout\";s:11:\"alternative\";s:27:\"neve_sitewide_content_width\";s:2:\"75\";s:24:\"neve_post_excerpt_length\";s:2:\"70\";s:28:\"neve_advanced_layout_options\";s:1:\"1\";s:31:\"neve_blog_archive_content_width\";s:2:\"75\";s:20:\"neve_pagination_type\";s:6:\"number\";s:32:\"neve_shop_archive_sidebar_layout\";s:4:\"left\";s:34:\"neve_single_product_sidebar_layout\";s:10:\"full-width\";s:31:\"neve_other_pages_sidebar_layout\";s:10:\"full-width\";s:16:\"neve_footer_text\";s:88:\"<p>Original | Powered by <a href=\"http://wordpress.org\" rel=\"nofollow\">WordPress</a></p>\";s:33:\"neve_single_product_content_width\";s:3:\"100\";s:19:\"ti_content_imported\";s:3:\"yes\";s:16:\"neve_grid_layout\";s:1:\"3\";s:19:\"neve_enable_masonry\";s:1:\"1\";s:26:\"neve_post_content_ordering\";s:36:\"[\"thumbnail\",\"title-meta\",\"excerpt\"]\";s:23:\"neve_post_meta_ordering\";s:28:\"[\"author\",\"date\",\"comments\"]\";s:28:\"hfg_header_layout_top_height\";s:35:\"{\"mobile\":0,\"tablet\":0,\"desktop\":0}\";s:18:\"primary-menu_style\";s:19:\"style-border-bottom\";s:18:\"primary-menu_color\";s:7:\"#000000\";s:28:\"primary-menu_component_align\";s:5:\"right\";s:25:\"primary-menu_active_color\";s:7:\"#000000\";s:14:\"logo_max_width\";s:41:\"{\"mobile\":120,\"tablet\":120,\"desktop\":238}\";s:11:\"custom_logo\";s:0:\"\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1555199521;s:4:\"data\";a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:12:\"blog-sidebar\";a:10:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";i:6;s:14:\"recent-posts-3\";i:7;s:17:\"recent-comments-3\";i:8;s:10:\"archives-3\";i:9;s:12:\"categories-3\";}s:12:\"shop-sidebar\";a:0:{}s:18:\"footer-one-widgets\";a:0:{}s:18:\"footer-two-widgets\";a:0:{}s:20:\"footer-three-widgets\";a:0:{}s:19:\"footer-four-widgets\";a:0:{}}}s:24:\"footer_copyright_content\";s:84:\"<p>Copyright © 1998 - 2019, Evergreen Wellness Center, LLC, all rights reserved</p>\";s:34:\"footer-two-widgets_component_align\";s:6:\"center\";s:34:\"footer-one-widgets_component_align\";s:4:\"left\";s:36:\"footer-three-widgets_component_align\";s:5:\"right\";s:17:\"footer-menu_color\";s:7:\"#dd3333\";}','yes'),(354,'theme_switched','','yes'),(355,'neve_install','1555172244','yes'),(356,'ti_about_recommended_plugins','a:0:{}','yes'),(184,'can_compress_scripts','1','no'),(197,'recently_activated','a:7:{s:29:\"otter-blocks/otter-blocks.php\";i:1555199474;s:43:\"themeisle-companion/themeisle-companion.php\";i:1555199474;s:24:\"wpforms-lite/wpforms.php\";i:1555199474;s:23:\"elementor/elementor.php\";i:1555183250;s:19:\"jetpack/jetpack.php\";i:1555171290;s:35:\"boldgrid-backup/boldgrid-backup.php\";i:1555171276;s:51:\"boldgrid-backup-premium/boldgrid-backup-premium.php\";i:1555171264;}','yes'),(283,'jetpack_constants_sync_checksum','a:19:{s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:17:\"WP_POST_REVISIONS\";i:4261170317;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:7:\"ABSPATH\";i:1693198237;s:14:\"WP_CONTENT_DIR\";i:3680756459;s:9:\"FS_METHOD\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:16:\"JETPACK__VERSION\";i:3417957315;s:12:\"IS_PRESSABLE\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:11:\"PHP_VERSION\";i:1761172046;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;}','yes'),(286,'jetpack_sync_https_history_main_network_site_url','a:1:{i:0;s:5:\"https\";}','yes'),(287,'jetpack_sync_https_history_site_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(288,'jetpack_sync_https_history_home_url','a:2:{i:0;s:5:\"https\";i:1;s:5:\"https\";}','yes'),(359,'_transient_timeout_ti_sdk_pause_neve','1563812374','no'),(360,'_transient_ti_sdk_pause_neve','1','no'),(324,'jetpack_callables_sync_checksum','a:33:{s:18:\"wp_max_upload_size\";i:3564436882;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:17:\"main_network_site\";i:1938658101;s:8:\"site_url\";i:1938658101;s:8:\"home_url\";i:1938658101;s:16:\"single_user_site\";i:4261170317;s:7:\"updates\";i:3425443202;s:28:\"has_file_system_write_access\";i:4261170317;s:21:\"is_version_controlled\";i:734881840;s:10:\"taxonomies\";i:3071687282;s:10:\"post_types\";i:1685877801;s:18:\"post_type_features\";i:2491652661;s:10:\"shortcodes\";i:73727818;s:27:\"rest_api_allowed_post_types\";i:503776097;s:32:\"rest_api_allowed_public_metadata\";i:223132457;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;s:10:\"wp_version\";i:2255569608;s:11:\"get_plugins\";i:2896241102;s:24:\"get_plugins_action_links\";i:223132457;s:14:\"active_modules\";i:223132457;s:16:\"hosting_provider\";i:769900095;s:6:\"locale\";i:110763218;s:13:\"site_icon_url\";i:734881840;s:5:\"roles\";i:2074191413;s:8:\"timezone\";i:3808505409;s:24:\"available_jetpack_blocks\";i:223132457;s:13:\"paused_themes\";i:734881840;s:14:\"paused_plugins\";i:734881840;}','no'),(325,'jpsq_sync_checkout','0:0','no'),(328,'jetpack_plugin_api_action_links','a:1:{s:19:\"jetpack/jetpack.php\";a:1:{s:7:\"Jetpack\";s:66:\"https://test.evergreenwellness.com/wp-admin/admin.php?page=jetpack\";}}','yes'),(499,'category_children','a:0:{}','yes'),(500,'elementor_library_category_children','a:0:{}','yes'),(392,'translatepress_avg_affiliate_id','91096','yes'),(829,'_transient_timeout_feed_9bc1b9ec726e1f508c5207949084454a','1556246408','no'),(827,'_transient_timeout_elementor_remote_info_api_data_2.5.14','1556246408','no'),(828,'_transient_elementor_remote_info_api_data_2.5.14','a:2:{s:9:\"timestamp\";i:1556202095;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:\"\";}}','no'),(393,'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'),(394,'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'),(410,'wpforms_version','1.5.2.1','yes'),(411,'wpforms_activated','a:1:{s:4:\"lite\";i:1555177387;}','yes'),(414,'otter_blocks_install','1555177393','yes'),(417,'_amn_wpforms-lite_to_check','1555205698','yes'),(399,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:57:\"The Complete Guide for Parallax Effect in 2019 – Part 1\";s:7:\"excerpt\";s:187:\"In the first part of our Parallax guide, we explain what parallax effects are and why you should be using them, and explore the different parallax variations you can now use in Elementor.\";s:7:\"created\";s:10:\"1555426362\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:122:\"https://elementor.com/blog/parallax-effect-part-1/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:81:\" Introducing Advanced Query Control: Related Posts, Date Filter & Exclude Options\";s:7:\"excerpt\";s:135:\"Use Elementor\'s Advanced Query Control to show related posts and filter posts according to advanced exclude rules or custom date range.\";s:7:\"created\";s:10:\"1555425215\";s:5:\"badge\";s:3:\"New\";s:3:\"url\";s:134:\"https://elementor.com/blog/introducing-advanced-query-control/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:70:\"How to Create a Wordpress Membership Site with MemberPress & Elementor\";s:7:\"excerpt\";s:216:\"Building a WordPress membership website is an excellent way of monetizing your website. In this in-depth article, we\'ll cover all of the essential steps when creating a membership site with Elementor and MemberPress.\";s:7:\"created\";s:10:\"1554189042\";s:5:\"badge\";s:0:\"\";s:3:\"url\";s:147:\"https://elementor.com/blog/wordpress-membership-site-memberpress-elementor/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(502,'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'),(419,'widget_eaw-recent-posts-plus','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(420,'widget_eaw-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(426,'theme_mods_twentyseventeen','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:8;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1555199834;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:10:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";i:6;s:14:\"recent-posts-3\";i:7;s:17:\"recent-comments-3\";i:8;s:10:\"archives-3\";i:9;s:12:\"categories-3\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}s:18:\"custom_css_post_id\";i:-1;}','yes');
/*!40000 ALTER TABLE `wp9z_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp9z_postmeta`
--

DROP TABLE IF EXISTS `wp9z_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp9z_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_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=2447 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp9z_postmeta`
--

LOCK TABLES `wp9z_postmeta` WRITE;
/*!40000 ALTER TABLE `wp9z_postmeta` DISABLE KEYS */;
INSERT INTO `wp9z_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,152,'_wp_attached_file','2018/11/neve-facebook.png'),(4,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:25:\"2018/11/neve-facebook.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:{}}}'),(5,153,'_wp_attached_file','2018/11/neve-twitter.png'),(6,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:24:\"2018/11/neve-twitter.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:{}}}'),(7,154,'_wp_attached_file','2018/11/neve-instagram.png'),(8,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:26:\"2018/11/neve-instagram.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:{}}}'),(9,155,'_wp_attached_file','2018/11/neve-googleplus.png'),(10,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:31;s:4:\"file\";s:27:\"2018/11/neve-googleplus.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:{}}}'),(11,157,'_wp_attached_file','2018/11/neve-play.png'),(12,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:21:\"2018/11/neve-play.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:{}}}'),(13,162,'_wp_attached_file','2018/12/nv-1.jpg'),(14,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:16:\"2018/12/nv-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"nv-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"nv-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"nv-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"nv-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:16:\"nv-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(16,163,'_wp_attached_file','2018/12/neve-business-growth-1.png'),(17,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:34:\"2018/12/neve-business-growth-1.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:{}}}'),(19,164,'_wp_attached_file','2018/12/neve-dollar-1.png'),(20,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:25:\"2018/12/neve-dollar-1.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:{}}}'),(22,165,'_wp_attached_file','2018/12/neve-clock-1.png'),(23,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:24:\"2018/12/neve-clock-1.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:{}}}'),(25,166,'_wp_attached_file','2018/12/neve-smile-1.png'),(26,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:24:\"2018/12/neve-smile-1.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:{}}}'),(28,167,'_wp_attached_file','2018/12/nv-3.jpg'),(29,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:673;s:4:\"file\";s:16:\"2018/12/nv-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"nv-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"nv-3-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:16:\"nv-3-529x620.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:620;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:{}}}'),(31,168,'_wp_attached_file','2018/12/neve-envelope-1.png'),(32,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:27:\"2018/12/neve-envelope-1.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:{}}}'),(34,169,'_wp_attached_file','2018/12/neve-map-1.png'),(35,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:48;s:4:\"file\";s:22:\"2018/12/neve-map-1.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:{}}}'),(37,170,'_wp_attached_file','2018/12/neve-photography-1.png'),(38,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:44;s:4:\"file\";s:30:\"2018/12/neve-photography-1.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:{}}}'),(40,171,'_wp_attached_file','2018/12/neve-phone-1.png'),(41,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:50;s:4:\"file\";s:24:\"2018/12/neve-phone-1.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:{}}}'),(43,178,'_wp_attached_file','2018/12/neve-chart-up-1.png'),(44,178,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:27:\"2018/12/neve-chart-up-1.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:{}}}'),(46,179,'_wp_attached_file','2018/12/neve-user-1.png'),(47,179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:23:\"2018/12/neve-user-1.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:{}}}'),(49,180,'_wp_attached_file','2018/12/neve-heart-1.png'),(50,180,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:24:\"2018/12/neve-heart-1.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:{}}}'),(52,181,'_wp_attached_file','2018/12/neve-gift-1.png'),(53,181,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:23:\"2018/12/neve-gift-1.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:{}}}'),(55,182,'_wp_attached_file','2018/12/nv-5.jpg'),(56,182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2018/12/nv-5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"nv-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"nv-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(58,183,'_wp_attached_file','2018/12/nv-4.jpg'),(59,183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2018/12/nv-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"nv-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"nv-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(61,184,'_wp_attached_file','2018/12/nv-6.jpg'),(62,184,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:16:\"2018/12/nv-6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"nv-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"nv-6-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(64,188,'_wp_attached_file','2018/12/nv-testimonial-signature.png'),(65,188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:61;s:4:\"file\";s:36:\"2018/12/nv-testimonial-signature.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"nv-testimonial-signature-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"nv-testimonial-signature-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:{}}}'),(67,191,'_wp_attached_file','2018/12/alexis-blockquote6.jpg'),(68,191,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2018/12/alexis-blockquote6.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"alexis-blockquote6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"alexis-blockquote6-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;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:{}}}'),(70,192,'_wp_attached_file','2018/12/neve-unlimited-revisions2.png'),(71,192,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:52;s:6:\"height\";i:59;s:4:\"file\";s:37:\"2018/12/neve-unlimited-revisions2.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:{}}}'),(73,193,'_wp_attached_file','2018/12/neve-ultimate-perfection-1.png'),(74,193,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:38:\"2018/12/neve-ultimate-perfection-1.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:{}}}'),(76,194,'_wp_attached_file','2018/12/neve-smart-experience1.png'),(77,194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:57;s:6:\"height\";i:55;s:4:\"file\";s:34:\"2018/12/neve-smart-experience1.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:{}}}'),(79,195,'_wp_attached_file','2018/12/neve-strict-deadline1.png'),(80,195,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:33:\"2018/12/neve-strict-deadline1.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:{}}}'),(82,196,'_wp_attached_file','2018/12/neve-reputed-copmany1.png'),(83,196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:35;s:6:\"height\";i:59;s:4:\"file\";s:33:\"2018/12/neve-reputed-copmany1.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:{}}}'),(85,205,'_wp_attached_file','2018/12/nv-team1-4.jpg'),(86,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team1-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team1-4-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(88,206,'_wp_attached_file','2018/12/nv-team2-1.jpg'),(89,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team2-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team2-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(91,207,'_wp_attached_file','2018/12/nv-team3-1.jpg'),(92,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team3-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team3-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(94,208,'_wp_attached_file','2018/12/nv-team4-1.jpg'),(95,208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team4-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team4-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(266,625,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We design things with love and passion.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-3.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Analytics release series A financing launch party interaction design android angel investor. Vesting period social media sales conversion launch party rockstar incubator customer social proof graphical user interface technology supply chain. Non-disclosure agreement rockstar creative partner network launch party social proof paradigm shift long tail influencer.\\u00a0<\\/p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(97,93,'_wp_old_slug','4ce7b3de381bbd41c4b8543a7ecb20d1'),(98,94,'_wxr_import_user_slug','rodica.andronache@vertistudio.com'),(99,599,'_wp_attached_file','2019/01/sweet-cake-christmas-tree.jpg'),(100,599,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1352;s:4:\"file\";s:37:\"2019/01/sweet-cake-christmas-tree.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"sweet-cake-christmas-tree-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"sweet-cake-christmas-tree-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"sweet-cake-christmas-tree-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"sweet-cake-christmas-tree-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:37:\"sweet-cake-christmas-tree-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(102,600,'_wp_attached_file','2019/01/palm-fruits.jpg'),(103,600,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:23:\"2019/01/palm-fruits.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"palm-fruits-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"palm-fruits-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"palm-fruits-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"palm-fruits-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:23:\"palm-fruits-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(265,625,'_elementor_template_type','post'),(105,601,'_wp_attached_file','2019/01/boats.jpg'),(106,601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:17:\"2019/01/boats.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"boats-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"boats-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"boats-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"boats-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"boats-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(108,602,'_wp_attached_file','2019/01/eating-place.jpg'),(109,602,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:24:\"2019/01/eating-place.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"eating-place-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"eating-place-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"eating-place-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"eating-place-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:24:\"eating-place-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(264,625,'_elementor_edit_mode','builder'),(111,604,'_wp_attached_file','2018/09/1-2.jpg'),(112,604,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:15:\"2018/09/1-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"1-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"1-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"1-2-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"1-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524917188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(114,605,'_wp_attached_file','2018/09/9.jpg'),(115,605,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:13:\"2018/09/9.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"9-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"9-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"9-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"9-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:13:\"9-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(117,606,'_wp_attached_file','2018/09/blog3.jpg'),(118,606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:17:\"2018/09/blog3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"blog3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"blog3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"blog3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"blog3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"blog3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(263,625,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(120,624,'_wp_attached_file','2019/04/placeholder-image.jpg'),(121,624,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:29:\"2019/04/placeholder-image.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"placeholder-image-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"placeholder-image-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"placeholder-image-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"placeholder-image-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:29:\"placeholder-image-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(122,26,'_customize_changeset_uuid','34880451-a07a-4a63-98c7-4620bd79a0c5'),(123,26,'_yoast_wpseo_content_score','30'),(124,26,'_wxr_import_user_slug','andreib'),(125,26,'_wp_page_template','default'),(126,26,'neve_meta_content_width','70'),(127,26,'neve_meta_disable_title','on'),(270,12,'_wp_attached_file','2018/09/winter-forest.jpg'),(130,54,'_wp_page_template','default'),(131,54,'_yoast_wpseo_content_score','60'),(132,54,'_oembed_4ce7b3de381bbd41c4b8543a7ecb20d1','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(133,54,'_oembed_time_4ce7b3de381bbd41c4b8543a7ecb20d1','1536316194'),(134,54,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(135,54,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1536322271'),(136,54,'_thumbnail_id','606'),(137,54,'_amp_validated_url_post_id','557'),(138,54,'neve_meta_content_width','70'),(141,56,'_wp_page_template','default'),(142,56,'_yoast_wpseo_content_score','60'),(143,56,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(144,56,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1536325392'),(145,56,'_thumbnail_id','605'),(146,56,'_amp_validated_url_post_id','556'),(147,56,'neve_meta_content_width','70'),(150,57,'_wp_page_template','default'),(151,57,'_yoast_wpseo_content_score','30'),(152,57,'_thumbnail_id','604'),(153,57,'_amp_validated_url_post_id','555'),(154,57,'neve_meta_content_width','70'),(155,91,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(156,91,'_yoast_wpseo_content_score','30'),(157,91,'_elementor_edit_mode','builder'),(158,91,'_elementor_template_type','post'),(159,91,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We design things with love and passion.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-3.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Analytics release series A financing launch party interaction design android angel investor. Vesting period social media sales conversion launch party rockstar incubator customer social proof graphical user interface technology supply chain. Non-disclosure agreement rockstar creative partner network launch party social proof paradigm shift long tail influencer.\\u00a0<\\/p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(160,91,'_elementor_version','2.5.9'),(161,91,'_oembed_12e122f8b69aa46d9b421abbe9bb2844','<iframe width=\"840\" height=\"473\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(162,91,'_oembed_time_12e122f8b69aa46d9b421abbe9bb2844','1536217231'),(163,91,'_oembed_f547c62b05824be493b1305d35655728','<iframe width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(164,91,'_oembed_time_f547c62b05824be493b1305d35655728','1536223657'),(165,91,'_oembed_4ce7b3de381bbd41c4b8543a7ecb20d1','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(166,91,'_oembed_time_4ce7b3de381bbd41c4b8543a7ecb20d1','1536240167'),(167,91,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(168,91,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1536322272'),(169,91,'neve_meta_content_width','70'),(170,91,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(172,232,'_menu_item_type','custom'),(173,232,'_menu_item_menu_item_parent','0'),(174,232,'_menu_item_object_id','232'),(175,232,'_menu_item_object','custom'),(176,232,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(177,232,'_menu_item_url','https://test.evergreenwellness.com/#about'),(178,233,'_menu_item_type','custom'),(179,233,'_menu_item_menu_item_parent','0'),(180,233,'_menu_item_object_id','233'),(181,233,'_menu_item_object','custom'),(182,233,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(183,233,'_menu_item_url','https://test.evergreenwellness.com/#Services'),(184,235,'_menu_item_type','custom'),(185,235,'_menu_item_menu_item_parent','0'),(186,235,'_menu_item_object_id','235'),(187,235,'_menu_item_object','custom'),(188,235,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(189,235,'_menu_item_url','https://test.evergreenwellness.com/weight-loss/'),(1250,921,'_wp_page_template','default'),(1249,921,'_elementor_edit_mode','builder'),(1247,921,'_edit_last','1'),(1248,921,'neve_meta_content_width','70'),(1246,921,'_edit_lock','1555811607:1'),(1245,920,'_wp_trash_meta_time','1555341951'),(1244,920,'_wp_trash_meta_status','publish'),(1243,920,'_edit_lock','1555341948:1'),(202,239,'_menu_item_type','custom'),(203,239,'_menu_item_menu_item_parent','0'),(204,239,'_menu_item_object_id','239'),(205,239,'_menu_item_object','custom'),(206,239,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(207,239,'_menu_item_url',''),(2297,1126,'_wp_trash_meta_status','publish'),(208,243,'_menu_item_type','custom'),(209,243,'_menu_item_menu_item_parent','0'),(210,243,'_menu_item_object_id','243'),(211,243,'_menu_item_object','custom'),(212,243,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(213,243,'_menu_item_url','https://test.evergreenwellness.com/#contact'),(1543,987,'_elementor_edit_mode','builder'),(1351,937,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(225,518,'_amp_validated_url_post_id','519'),(226,518,'neve_meta_content_width','70'),(227,518,'_thumbnail_id','602'),(228,518,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(229,518,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1546933107'),(230,518,'_wp_page_template','default'),(946,857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:420;s:6:\"height\";i:269;s:4:\"file\";s:42:\"2019/04/acupuncture_500-e1522635045797.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"acupuncture_500-e1522635045797-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"acupuncture_500-e1522635045797-300x192.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:192;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:{}}}'),(945,857,'_wp_attached_file','2019/04/acupuncture_500-e1522635045797.jpg'),(271,12,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1619;s:6:\"height\";i:1080;s:4:\"file\";s:25:\"2018/09/winter-forest.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"winter-forest-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"winter-forest-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"winter-forest-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"winter-forest-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:25:\"winter-forest-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(245,520,'_amp_validated_url_post_id','523'),(246,520,'neve_meta_content_width','70'),(247,520,'_thumbnail_id','601'),(248,520,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(249,520,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1547037640'),(250,520,'_wp_page_template','default'),(253,528,'_amp_validated_url_post_id','529'),(254,528,'neve_meta_content_width','70'),(255,528,'_thumbnail_id','600'),(256,528,'_wp_page_template','default'),(259,552,'_amp_validated_url_post_id','553'),(260,552,'neve_meta_content_width','70'),(261,552,'_thumbnail_id','599'),(262,552,'_wp_page_template','default'),(267,625,'_elementor_version','2.5.9'),(268,625,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(272,12,'_elementor_source_image_hash','fa5862b7ce7e1b0d3fc9b1f563aabdb95277cc2b'),(273,12,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:620716;s:14:\"optimized_size\";i:580074;s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5487;s:14:\"optimized_size\";i:4868;s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13444;s:14:\"optimized_size\";i:12494;s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86096;s:14:\"optimized_size\";i:82721;s:7:\"percent\";d:3.9199999999999999289457264239899814128875732421875;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:157381;s:14:\"optimized_size\";i:151882;s:7:\"percent\";d:3.4900000000000002131628207280300557613372802734375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:128100;s:14:\"optimized_size\";i:123542;s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1011224;s:14:\"optimized_size\";i:955581;s:7:\"percent\";d:5.5;}}'),(274,12,'_imagify_status','success'),(275,17,'_wp_attached_file','2018/09/alexis-client_signature.png'),(276,17,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:61;s:4:\"file\";s:35:\"2018/09/alexis-client_signature.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"alexis-client_signature-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"alexis-client_signature-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:{}}}'),(277,17,'_elementor_source_image_hash','652adb49769b776cc810d2c939547596fb26def0'),(278,17,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(279,17,'_imagify_status','already_optimized'),(280,18,'_wp_attached_file','2018/09/alexis-blockquote5.jpg'),(281,18,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2018/09/alexis-blockquote5.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"alexis-blockquote5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"alexis-blockquote5-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;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:{}}}'),(282,18,'_elementor_source_image_hash','b82a714acd5c2f96c73d668d0635c6aa913274a6'),(283,18,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(284,18,'_imagify_status','already_optimized'),(285,82,'_wp_attached_file','2018/09/8.jpg'),(286,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:13:\"2018/09/8.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:13:\"8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:13:\"8-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:13:\"8-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:14:\"8-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:13:\"8-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(287,82,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(288,82,'_imagify_status','already_optimized'),(289,83,'_wp_attached_file','2018/09/9-1.jpg'),(290,83,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/9-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"9-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"9-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(291,83,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(292,83,'_imagify_status','already_optimized'),(293,83,'_oembed_fde457ac52ce3865c4ae7151b4405e7f','<blockquote class=\"wp-embedded-content\" data-secret=\"FwgISAlmrj\"><a href=\"https://mystock.themeisle.com/photo/alley-3/\">Alley</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/alley-3/embed/#?secret=FwgISAlmrj\" data-secret=\"FwgISAlmrj\" width=\"600\" height=\"338\" title=\"&#8220;Alley&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(294,83,'_oembed_time_fde457ac52ce3865c4ae7151b4405e7f','1547033421'),(295,90,'_wp_attached_file','2018/09/blog3-1.jpg'),(296,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2018/09/blog3-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blog3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blog3-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"blog3-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"blog3-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"blog3-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(297,90,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(298,90,'_imagify_status','already_optimized'),(299,90,'_oembed_a675d679a638710603fde40ee0ae522b','{{unknown}}'),(300,664,'_wp_attached_file','2018/09/video-bg.jpg'),(301,664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:20:\"2018/09/video-bg.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"video-bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"video-bg-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"video-bg-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"video-bg-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:20:\"video-bg-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(302,664,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(303,664,'_imagify_status','already_optimized'),(304,665,'_wp_attached_file','2018/09/work-4.jpg'),(305,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1112;s:6:\"height\";i:600;s:4:\"file\";s:18:\"2018/09/work-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"work-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"work-4-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"work-4-768x414.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"work-4-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"work-4-930x600.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:600;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:{}}}'),(306,665,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(307,665,'_imagify_status','already_optimized'),(308,13,'_wp_attached_file','2018/12/nv-gutenberg-1.jpg'),(309,13,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:26:\"2018/12/nv-gutenberg-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"nv-gutenberg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"nv-gutenberg-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"nv-gutenberg-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"nv-gutenberg-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:26:\"nv-gutenberg-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(310,251,'_wp_attached_file','2018/10/Pasted_image_at_2018-10-29__2_15_PM.png'),(311,251,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:586;s:4:\"file\";s:47:\"2018/10/Pasted_image_at_2018-10-29__2_15_PM.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Pasted_image_at_2018-10-29__2_15_PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"Pasted_image_at_2018-10-29__2_15_PM-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:47:\"Pasted_image_at_2018-10-29__2_15_PM-768x293.png\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:48:\"Pasted_image_at_2018-10-29__2_15_PM-1024x391.png\";s:5:\"width\";i:1024;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:47:\"Pasted_image_at_2018-10-29__2_15_PM-930x586.png\";s:5:\"width\";i:930;s:6:\"height\";i:586;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:{}}}'),(312,251,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62423;s:14:\"optimized_size\";i:17115;s:7:\"percent\";d:72.5799999999999982946974341757595539093017578125;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3606;s:14:\"optimized_size\";i:2595;s:7:\"percent\";d:28.03999999999999914734871708787977695465087890625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5639;s:14:\"optimized_size\";i:3877;s:7:\"percent\";d:31.25;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14699;s:14:\"optimized_size\";i:9917;s:7:\"percent\";d:32.530000000000001136868377216160297393798828125;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21201;s:14:\"optimized_size\";i:14815;s:7:\"percent\";d:30.120000000000000994759830064140260219573974609375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13026;s:14:\"optimized_size\";i:13012;s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6038;s:14:\"optimized_size\";i:4197;s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13427;s:14:\"optimized_size\";i:9350;s:7:\"percent\";d:30.3599999999999994315658113919198513031005859375;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3894;s:14:\"optimized_size\";i:2779;s:7:\"percent\";d:28.629999999999999005240169935859739780426025390625;}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:143953;s:14:\"optimized_size\";i:77657;s:7:\"percent\";d:46.0499999999999971578290569595992565155029296875;}}'),(313,251,'_imagify_status','success'),(314,256,'_wp_attached_file','2018/10/neve-contact-winter.jpg'),(315,256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2018/10/neve-contact-winter.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"neve-contact-winter-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"neve-contact-winter-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"neve-contact-winter-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"neve-contact-winter-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"neve-contact-winter-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(316,256,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:624113;s:14:\"optimized_size\";i:596966;s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13326;s:14:\"optimized_size\";i:12954;s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85021;s:14:\"optimized_size\";i:81656;s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153520;s:14:\"optimized_size\";i:147381;s:7:\"percent\";d:4;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126819;s:14:\"optimized_size\";i:121719;s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11058;s:14:\"optimized_size\";i:10832;s:7:\"percent\";d:2.04000000000000003552713678800500929355621337890625;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51870;s:14:\"optimized_size\";i:49801;s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;}s:29:\"woocommerce_gallery_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1065727;s:14:\"optimized_size\";i:1021309;s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;}}'),(317,256,'_imagify_status','success'),(318,268,'_wp_attached_file','2018/09/1-2-1.jpg'),(319,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:17:\"2018/09/1-2-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"1-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"1-2-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"1-2-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"1-2-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"1-2-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524917188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(320,276,'_wp_attached_file','2018/10/cropped-neve_onlight.png'),(321,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2018/10/cropped-neve_onlight.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-neve_onlight-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"cropped-neve_onlight-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(322,276,'_wp_attachment_context','site-icon'),(323,284,'_wp_attached_file','2018/10/neve_demo.png'),(324,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:21:\"2018/10/neve_demo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"neve_demo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"neve_demo-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(325,483,'_wp_attached_file','2018/12/nv-1-1.jpg'),(326,483,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:18:\"2018/12/nv-1-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nv-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"nv-1-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-1-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(327,484,'_wp_attached_file','2018/12/nv-3-1.jpg'),(328,484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:673;s:4:\"file\";s:18:\"2018/12/nv-3-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-3-1-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-3-1-529x620.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:620;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:{}}}'),(329,14,'_wp_attached_file','2018/12/nv-1-2.jpg'),(330,14,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:18:\"2018/12/nv-1-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nv-1-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"nv-1-2-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-1-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(331,485,'_wp_attached_file','2018/12/nv-team1.jpg'),(332,485,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:20:\"2018/12/nv-team1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-team1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-team1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(333,486,'_wp_attached_file','2018/12/nv-team2.jpg'),(334,486,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:20:\"2018/12/nv-team2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-team2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-team2-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(335,487,'_wp_attached_file','2018/12/nv-team3.jpg'),(336,487,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:20:\"2018/12/nv-team3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-team3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-team3-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(337,488,'_wp_attached_file','2018/12/nv-team4.jpg'),(338,488,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:20:\"2018/12/nv-team4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-team4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-team4-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(341,490,'_wp_attached_file','2018/12/nv-4-1.jpg'),(342,490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-4-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-4-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(343,491,'_wp_attached_file','2018/12/nv-6-1.jpg'),(344,491,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-6-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-6-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(345,494,'_wp_attached_file','2018/12/nv-big-title-sprites1.png'),(346,494,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:168;s:4:\"file\";s:33:\"2018/12/nv-big-title-sprites1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"nv-big-title-sprites1-55x150.png\";s:5:\"width\";i:55;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:{}}}'),(347,497,'_wp_attached_file','2018/12/neve-play1.png'),(348,497,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:22:\"2018/12/neve-play1.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:{}}}'),(349,498,'_wp_attached_file','2018/12/nv-key-points-sprites2.png'),(350,498,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:78;s:6:\"height\";i:220;s:4:\"file\";s:34:\"2018/12/nv-key-points-sprites2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"nv-key-points-sprites2-78x150.png\";s:5:\"width\";i:78;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:{}}}'),(351,499,'_wp_attached_file','2018/12/nv-stats-sprites.png'),(352,499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:186;s:4:\"file\";s:28:\"2018/12/nv-stats-sprites.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"nv-stats-sprites-50x150.png\";s:5:\"width\";i:50;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:{}}}'),(353,502,'_wp_attached_file','2018/12/nv-benefits-sprites1.png'),(354,502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:373;s:4:\"file\";s:32:\"2018/12/nv-benefits-sprites1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"nv-benefits-sprites1-60x150.png\";s:5:\"width\";i:60;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"nv-benefits-sprites1-48x300.png\";s:5:\"width\";i:48;s:6:\"height\";i:300;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:{}}}'),(355,505,'_wp_attached_file','2018/12/nv-social-sprites2.png'),(356,505,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:122;s:4:\"file\";s:30:\"2018/12/nv-social-sprites2.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:{}}}'),(357,525,'_wp_attached_file','2019/01/boats-1.jpg'),(358,525,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2019/01/boats-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"boats-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"boats-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"boats-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"boats-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"boats-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(359,526,'_wp_attached_file','2019/01/eating-place-1.jpg'),(360,526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:26:\"2019/01/eating-place-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"eating-place-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"eating-place-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"eating-place-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"eating-place-1-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:26:\"eating-place-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(361,527,'_wp_attached_file','2019/01/palm-fruits-1.jpg'),(362,527,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:25:\"2019/01/palm-fruits-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"palm-fruits-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"palm-fruits-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"palm-fruits-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"palm-fruits-1-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:25:\"palm-fruits-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(363,558,'_wp_attached_file','2019/01/sweet-cake-christmas-tree-1.jpg'),(364,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1352;s:4:\"file\";s:39:\"2019/01/sweet-cake-christmas-tree-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-1-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"sweet-cake-christmas-tree-1-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(365,6,'_customize_changeset_uuid','bec07797-e3a7-4d93-8cb6-ab714416e562'),(366,6,'neve_meta_disable_title','on'),(367,6,'neve_meta_content_width','70'),(368,645,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(369,645,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1555183403'),(370,645,'neve_meta_container','full-width'),(371,645,'neve_meta_sidebar','full-width'),(372,645,'neve_meta_disable_title','on'),(373,645,'neve_meta_content_width','70'),(374,645,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(375,645,'_wxr_import_has_attachment_refs','1'),(376,646,'_wp_attached_file','2019/02/neve_demo.png'),(377,646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:21:\"2019/02/neve_demo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"neve_demo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"neve_demo-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(391,687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:227;s:6:\"height\";i:108;s:4:\"file\";s:20:\"2019/04/ewc-logo.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"ewc-logo-150x108.png\";s:5:\"width\";i:150;s:6:\"height\";i:108;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:{}}}'),(390,687,'_wp_attached_file','2019/04/ewc-logo.png'),(389,686,'_edit_lock','1555181675:1'),(383,668,'_menu_item_type','post_type'),(384,668,'_menu_item_object_id','645'),(385,668,'_menu_item_object','page'),(386,668,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(387,685,'_wp_attached_file','2019/04/placeholder-image-1.jpg'),(388,685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2019/04/placeholder-image-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"placeholder-image-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"placeholder-image-1-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"placeholder-image-1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"placeholder-image-1-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"placeholder-image-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(392,688,'_wp_attached_file','2019/04/evergreen-logo.png'),(393,688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:496;s:6:\"height\";i:222;s:4:\"file\";s:26:\"2019/04/evergreen-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"evergreen-logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"evergreen-logo-300x134.png\";s:5:\"width\";i:300;s:6:\"height\";i:134;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:{}}}'),(394,686,'_wp_trash_meta_status','publish'),(395,686,'_wp_trash_meta_time','1555181679'),(396,689,'_wp_attached_file','2018/09/winter-forest-1.jpg'),(397,689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1619;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2018/09/winter-forest-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"winter-forest-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"winter-forest-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"winter-forest-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"winter-forest-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:27:\"winter-forest-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(398,689,'_elementor_source_image_hash','fa5862b7ce7e1b0d3fc9b1f563aabdb95277cc2b'),(399,689,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:620716;s:14:\"optimized_size\";i:580074;s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5487;s:14:\"optimized_size\";i:4868;s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13444;s:14:\"optimized_size\";i:12494;s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86096;s:14:\"optimized_size\";i:82721;s:7:\"percent\";d:3.9199999999999999289457264239899814128875732421875;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:157381;s:14:\"optimized_size\";i:151882;s:7:\"percent\";d:3.4900000000000002131628207280300557613372802734375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:128100;s:14:\"optimized_size\";i:123542;s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1011224;s:14:\"optimized_size\";i:955581;s:7:\"percent\";d:5.5;}}'),(400,689,'_imagify_status','success'),(401,690,'_wp_attached_file','2018/09/alexis-client_signature-1.png'),(402,690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:61;s:4:\"file\";s:37:\"2018/09/alexis-client_signature-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"alexis-client_signature-1-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"alexis-client_signature-1-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:{}}}'),(403,690,'_elementor_source_image_hash','652adb49769b776cc810d2c939547596fb26def0'),(404,690,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(405,690,'_imagify_status','already_optimized'),(406,691,'_wp_attached_file','2018/09/alexis-blockquote5-1.jpg'),(407,691,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2018/09/alexis-blockquote5-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote5-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote5-1-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;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,691,'_elementor_source_image_hash','b82a714acd5c2f96c73d668d0635c6aa913274a6'),(409,691,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(410,691,'_imagify_status','already_optimized'),(411,692,'_wp_attached_file','2018/09/8-1.jpg'),(412,692,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/8-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"8-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"8-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"8-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(413,692,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(414,692,'_imagify_status','already_optimized'),(415,693,'_wp_attached_file','2018/09/9-2.jpg'),(416,693,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/9-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"9-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-2-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"9-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(417,693,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(418,693,'_imagify_status','already_optimized'),(419,693,'_oembed_fde457ac52ce3865c4ae7151b4405e7f','<blockquote class=\"wp-embedded-content\" data-secret=\"FwgISAlmrj\"><a href=\"https://mystock.themeisle.com/photo/alley-3/\">Alley</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/alley-3/embed/#?secret=FwgISAlmrj\" data-secret=\"FwgISAlmrj\" width=\"600\" height=\"338\" title=\"&#8220;Alley&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(420,693,'_oembed_time_fde457ac52ce3865c4ae7151b4405e7f','1547033421'),(421,694,'_wp_attached_file','2018/09/blog3-2.jpg'),(422,694,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2018/09/blog3-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blog3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blog3-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"blog3-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"blog3-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"blog3-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(423,694,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(424,694,'_imagify_status','already_optimized'),(425,694,'_oembed_a675d679a638710603fde40ee0ae522b','{{unknown}}'),(426,695,'_wp_attached_file','2018/09/video-bg-1.jpg'),(427,695,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:22:\"2018/09/video-bg-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"video-bg-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"video-bg-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"video-bg-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"video-bg-1-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:22:\"video-bg-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(428,695,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(429,695,'_imagify_status','already_optimized'),(430,696,'_wp_attached_file','2018/09/work-4-1.jpg'),(431,696,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1112;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2018/09/work-4-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"work-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"work-4-1-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"work-4-1-768x414.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"work-4-1-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:20:\"work-4-1-930x600.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:600;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:{}}}'),(432,696,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(433,696,'_imagify_status','already_optimized'),(434,697,'_wp_attached_file','2018/12/nv-gutenberg-1-1.jpg'),(435,697,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:28:\"2018/12/nv-gutenberg-1-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"nv-gutenberg-1-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(436,698,'_wp_attached_file','2018/10/Pasted_image_at_2018-10-29__2_15_PM-1.png'),(437,698,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:586;s:4:\"file\";s:49:\"2018/10/Pasted_image_at_2018-10-29__2_15_PM-1.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-1-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-1-768x293.png\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Pasted_image_at_2018-10-29__2_15_PM-1-1024x391.png\";s:5:\"width\";i:1024;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-1-930x586.png\";s:5:\"width\";i:930;s:6:\"height\";i:586;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:{}}}'),(438,698,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62423;s:14:\"optimized_size\";i:17115;s:7:\"percent\";d:72.5799999999999982946974341757595539093017578125;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3606;s:14:\"optimized_size\";i:2595;s:7:\"percent\";d:28.03999999999999914734871708787977695465087890625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5639;s:14:\"optimized_size\";i:3877;s:7:\"percent\";d:31.25;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14699;s:14:\"optimized_size\";i:9917;s:7:\"percent\";d:32.530000000000001136868377216160297393798828125;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21201;s:14:\"optimized_size\";i:14815;s:7:\"percent\";d:30.120000000000000994759830064140260219573974609375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13026;s:14:\"optimized_size\";i:13012;s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6038;s:14:\"optimized_size\";i:4197;s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13427;s:14:\"optimized_size\";i:9350;s:7:\"percent\";d:30.3599999999999994315658113919198513031005859375;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3894;s:14:\"optimized_size\";i:2779;s:7:\"percent\";d:28.629999999999999005240169935859739780426025390625;}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:143953;s:14:\"optimized_size\";i:77657;s:7:\"percent\";d:46.0499999999999971578290569595992565155029296875;}}'),(439,698,'_imagify_status','success'),(440,699,'_wp_attached_file','2018/10/neve-contact-winter-1.jpg'),(441,699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2018/10/neve-contact-winter-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"neve-contact-winter-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(442,699,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:624113;s:14:\"optimized_size\";i:596966;s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13326;s:14:\"optimized_size\";i:12954;s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85021;s:14:\"optimized_size\";i:81656;s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153520;s:14:\"optimized_size\";i:147381;s:7:\"percent\";d:4;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126819;s:14:\"optimized_size\";i:121719;s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11058;s:14:\"optimized_size\";i:10832;s:7:\"percent\";d:2.04000000000000003552713678800500929355621337890625;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51870;s:14:\"optimized_size\";i:49801;s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;}s:29:\"woocommerce_gallery_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1065727;s:14:\"optimized_size\";i:1021309;s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;}}'),(443,699,'_imagify_status','success'),(444,700,'_wp_attached_file','2018/09/1-2-2.jpg'),(445,700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:17:\"2018/09/1-2-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"1-2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"1-2-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"1-2-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"1-2-2-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"1-2-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524917188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(446,701,'_wp_attached_file','2018/10/cropped-neve_onlight-1.png'),(447,701,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:34:\"2018/10/cropped-neve_onlight-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-neve_onlight-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cropped-neve_onlight-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(448,701,'_wp_attachment_context','site-icon'),(449,702,'_wp_attached_file','2018/10/neve_demo-1.png'),(450,702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:23:\"2018/10/neve_demo-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"neve_demo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"neve_demo-1-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(451,703,'_wp_attached_file','2018/12/nv-1-1-1.jpg'),(452,703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2018/12/nv-1-1-1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-1-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-1-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"nv-1-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"nv-1-1-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:20:\"nv-1-1-1-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(453,704,'_wp_attached_file','2018/12/nv-3-2.jpg'),(454,704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:673;s:4:\"file\";s:18:\"2018/12/nv-3-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-3-2-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-3-2-529x620.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:620;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:{}}}'),(455,705,'_wp_attached_file','2018/12/nv-1-3.jpg'),(456,705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:18:\"2018/12/nv-1-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-1-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-1-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nv-1-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"nv-1-3-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-1-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(457,706,'_wp_attached_file','2018/12/nv-team1-1.jpg'),(458,706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team1-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team1-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(459,707,'_wp_attached_file','2018/12/nv-team2-2.jpg'),(460,707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team2-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team2-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team2-2-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(461,708,'_wp_attached_file','2018/12/nv-team3-2.jpg'),(462,708,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team3-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team3-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team3-2-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(463,709,'_wp_attached_file','2018/12/nv-team4-2.jpg'),(464,709,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team4-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team4-2-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(465,710,'_wp_attached_file','2018/12/nv-5-2.jpg'),(466,710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-5-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-5-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(467,711,'_wp_attached_file','2018/12/nv-4-2.jpg'),(468,711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-4-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-4-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(469,712,'_wp_attached_file','2018/12/nv-6-2.jpg'),(470,712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-6-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-6-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-6-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(471,713,'_wp_attached_file','2018/12/nv-big-title-sprites1-1.png'),(472,713,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:168;s:4:\"file\";s:35:\"2018/12/nv-big-title-sprites1-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"nv-big-title-sprites1-1-55x150.png\";s:5:\"width\";i:55;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:{}}}'),(473,714,'_wp_attached_file','2018/12/neve-play1-1.png'),(474,714,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:24:\"2018/12/neve-play1-1.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:{}}}'),(475,715,'_wp_attached_file','2018/12/nv-key-points-sprites2-1.png'),(476,715,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:78;s:6:\"height\";i:220;s:4:\"file\";s:36:\"2018/12/nv-key-points-sprites2-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"nv-key-points-sprites2-1-78x150.png\";s:5:\"width\";i:78;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:{}}}'),(477,716,'_wp_attached_file','2018/12/nv-stats-sprites-1.png'),(478,716,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:186;s:4:\"file\";s:30:\"2018/12/nv-stats-sprites-1.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"nv-stats-sprites-1-50x150.png\";s:5:\"width\";i:50;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:{}}}'),(479,717,'_wp_attached_file','2018/12/nv-benefits-sprites1-1.png'),(480,717,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:373;s:4:\"file\";s:34:\"2018/12/nv-benefits-sprites1-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"nv-benefits-sprites1-1-60x150.png\";s:5:\"width\";i:60;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"nv-benefits-sprites1-1-48x300.png\";s:5:\"width\";i:48;s:6:\"height\";i:300;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:{}}}'),(481,718,'_wp_attached_file','2018/12/nv-social-sprites2-1.png'),(482,718,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:122;s:4:\"file\";s:32:\"2018/12/nv-social-sprites2-1.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:{}}}'),(483,719,'_wp_attached_file','2019/01/boats-2.jpg'),(484,719,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2019/01/boats-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"boats-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"boats-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"boats-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"boats-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"boats-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(485,720,'_wp_attached_file','2019/01/eating-place-2.jpg'),(486,720,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:26:\"2019/01/eating-place-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"eating-place-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"eating-place-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"eating-place-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"eating-place-2-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:26:\"eating-place-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(487,721,'_wp_attached_file','2019/01/palm-fruits-2.jpg'),(488,721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:25:\"2019/01/palm-fruits-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"palm-fruits-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"palm-fruits-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"palm-fruits-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"palm-fruits-2-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:25:\"palm-fruits-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(489,722,'_wp_attached_file','2019/01/sweet-cake-christmas-tree-2.jpg'),(490,722,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1352;s:4:\"file\";s:39:\"2019/01/sweet-cake-christmas-tree-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-2-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-2-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"sweet-cake-christmas-tree-2-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(491,723,'_customize_changeset_uuid','bec07797-e3a7-4d93-8cb6-ab714416e562'),(492,723,'neve_meta_disable_title','on'),(493,723,'neve_meta_content_width','70'),(494,724,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(495,724,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1552920260'),(496,724,'neve_meta_container','full-width'),(497,724,'neve_meta_sidebar','full-width'),(498,724,'neve_meta_disable_title','on'),(499,724,'neve_meta_content_width','70'),(500,724,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(501,724,'_wxr_import_has_attachment_refs','1'),(502,725,'_wp_attached_file','2019/02/neve_demo-1.png'),(503,725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:23:\"2019/02/neve_demo-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"neve_demo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"neve_demo-1-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(513,206,'_oembed_59fd94ea284c823a4a26484c6ac27b6a','<blockquote class=\"wp-embedded-content\" data-secret=\"V1faHQF8Gi\"><a href=\"https://mystock.themeisle.com/photo/winter-hat/\">Winter Hat</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/winter-hat/embed/#?secret=V1faHQF8Gi\" data-secret=\"V1faHQF8Gi\" width=\"600\" height=\"338\" title=\"&#8220;Winter Hat&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(512,167,'_oembed_4fcb1978a6de5c6a90da2588533ba49f','{{unknown}}'),(511,645,'_edit_lock','1555183467:1'),(509,727,'_wp_attached_file','2019/04/placeholder-image-2.jpg'),(510,727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2019/04/placeholder-image-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"placeholder-image-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"placeholder-image-2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"placeholder-image-2-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"placeholder-image-2-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"placeholder-image-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(514,206,'_oembed_time_59fd94ea284c823a4a26484c6ac27b6a','1555181973'),(515,205,'_oembed_c050c882282fb6d59ddf3c2f84523ce1','<blockquote class=\"wp-embedded-content\" data-secret=\"JJiLa5thd5\"><a href=\"https://mystock.themeisle.com/photo/sun-hat/\">Sun Hat</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/sun-hat/embed/#?secret=JJiLa5thd5\" data-secret=\"JJiLa5thd5\" width=\"600\" height=\"338\" title=\"&#8220;Sun Hat&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(516,205,'_oembed_time_c050c882282fb6d59ddf3c2f84523ce1','1555181975'),(517,208,'_oembed_e61fc4b54a886dfbd4e2578bf7ac28e4','{{unknown}}'),(518,207,'_oembed_cb7011eb9ee349190b9b1fbcc40be5b6','<blockquote class=\"wp-embedded-content\" data-secret=\"PJbzzP9Cki\"><a href=\"https://mystock.themeisle.com/photo/thinking-time/\">Thinking time</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/thinking-time/embed/#?secret=PJbzzP9Cki\" data-secret=\"PJbzzP9Cki\" width=\"600\" height=\"338\" title=\"&#8220;Thinking time&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(519,207,'_oembed_time_cb7011eb9ee349190b9b1fbcc40be5b6','1555181978'),(520,645,'_edit_last','1'),(521,26,'_wp_trash_meta_status','publish'),(522,26,'_wp_trash_meta_time','1555183176'),(523,26,'_wp_desired_post_slug','neve-blog'),(524,6,'_wp_trash_meta_status','publish'),(525,6,'_wp_trash_meta_time','1555183176'),(526,6,'_wp_desired_post_slug','blog'),(527,723,'_wp_trash_meta_status','publish'),(528,723,'_wp_trash_meta_time','1555183176'),(529,723,'_wp_desired_post_slug','blog-2'),(530,91,'_wp_trash_meta_status','publish'),(531,91,'_wp_trash_meta_time','1555183177'),(532,91,'_wp_desired_post_slug','neve-home'),(533,734,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(534,734,'_elementor_edit_mode','builder'),(535,734,'_elementor_template_type','post'),(536,734,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We design things with love and passion.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-3.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Analytics release series A financing launch party interaction design android angel investor. Vesting period social media sales conversion launch party rockstar incubator customer social proof graphical user interface technology supply chain. Non-disclosure agreement rockstar creative partner network launch party social proof paradigm shift long tail influencer.\\u00a0<\\/p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(537,734,'_elementor_version','2.5.9'),(538,734,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(540,645,'_wp_trash_meta_status','publish'),(541,645,'_wp_trash_meta_time','1555183177'),(542,645,'_wp_desired_post_slug','home'),(543,724,'_wp_trash_meta_status','publish'),(544,724,'_wp_trash_meta_time','1555183177'),(545,724,'_wp_desired_post_slug','home-2'),(546,3,'_wp_trash_meta_status','draft'),(547,3,'_wp_trash_meta_time','1555183177'),(548,3,'_wp_desired_post_slug','privacy-policy'),(549,2,'_wp_trash_meta_status','publish'),(550,2,'_wp_trash_meta_time','1555183177'),(551,2,'_wp_desired_post_slug','sample-page'),(552,648,'_wp_trash_meta_status','private'),(553,648,'_wp_trash_meta_time','1555183177'),(554,648,'_wp_desired_post_slug','wpforms-preview'),(555,726,'_wp_trash_meta_status','private'),(556,726,'_wp_trash_meta_time','1555183177'),(557,726,'_wp_desired_post_slug','wpforms-preview-2'),(558,1,'_wp_trash_meta_status','publish'),(559,1,'_wp_trash_meta_time','1555183201'),(560,1,'_wp_desired_post_slug','hello-world'),(561,1,'_wp_trash_meta_comments_status','a:1:{i:1;s:1:\"1\";}'),(562,552,'_wp_trash_meta_status','publish'),(563,552,'_wp_trash_meta_time','1555183201'),(564,552,'_wp_desired_post_slug','fruit-smoothies'),(565,528,'_wp_trash_meta_status','publish'),(566,528,'_wp_trash_meta_time','1555183201'),(567,528,'_wp_desired_post_slug','quid-autem-habent-admirationis'),(568,520,'_wp_trash_meta_status','publish'),(569,520,'_wp_trash_meta_time','1555183202'),(570,520,'_wp_desired_post_slug','beatum-inquit'),(571,518,'_wp_trash_meta_status','publish'),(572,518,'_wp_trash_meta_time','1555183202'),(573,518,'_wp_desired_post_slug','quid-igitur-dubitamus'),(574,57,'_wp_trash_meta_status','publish'),(575,57,'_wp_trash_meta_time','1555183202'),(576,57,'_wp_desired_post_slug','ego-quoque'),(577,56,'_wp_trash_meta_status','publish'),(578,56,'_wp_trash_meta_time','1555183202'),(579,56,'_wp_desired_post_slug','semper-enim-ita-adsumit'),(580,54,'_wp_trash_meta_status','publish'),(581,54,'_wp_trash_meta_time','1555183202'),(582,54,'_wp_desired_post_slug','travelling-alteration-impression'),(583,748,'_wp_attached_file','2018/09/winter-forest-2.jpg'),(584,748,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1619;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2018/09/winter-forest-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"winter-forest-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"winter-forest-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"winter-forest-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"winter-forest-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:27:\"winter-forest-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(585,748,'_elementor_source_image_hash','fa5862b7ce7e1b0d3fc9b1f563aabdb95277cc2b'),(586,748,'_imagify_data','a:2:{s:5:\"sizes\";a:6:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:620716;s:14:\"optimized_size\";i:580074;s:7:\"percent\";d:6.54999999999999982236431605997495353221893310546875;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5487;s:14:\"optimized_size\";i:4868;s:7:\"percent\";d:11.2799999999999993605115378159098327159881591796875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13444;s:14:\"optimized_size\";i:12494;s:7:\"percent\";d:7.07000000000000028421709430404007434844970703125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86096;s:14:\"optimized_size\";i:82721;s:7:\"percent\";d:3.9199999999999999289457264239899814128875732421875;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:157381;s:14:\"optimized_size\";i:151882;s:7:\"percent\";d:3.4900000000000002131628207280300557613372802734375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:128100;s:14:\"optimized_size\";i:123542;s:7:\"percent\";d:3.560000000000000053290705182007513940334320068359375;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1011224;s:14:\"optimized_size\";i:955581;s:7:\"percent\";d:5.5;}}'),(587,748,'_imagify_status','success'),(588,749,'_wp_attached_file','2018/09/alexis-client_signature-2.png'),(589,749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:61;s:4:\"file\";s:37:\"2018/09/alexis-client_signature-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"alexis-client_signature-2-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"alexis-client_signature-2-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:{}}}'),(590,749,'_elementor_source_image_hash','652adb49769b776cc810d2c939547596fb26def0'),(591,749,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(592,749,'_imagify_status','already_optimized'),(593,750,'_wp_attached_file','2018/09/alexis-blockquote5-2.jpg'),(594,750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2018/09/alexis-blockquote5-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote5-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote5-2-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;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:{}}}'),(595,750,'_elementor_source_image_hash','b82a714acd5c2f96c73d668d0635c6aa913274a6'),(596,750,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(597,750,'_imagify_status','already_optimized'),(598,751,'_wp_attached_file','2018/09/8-2.jpg'),(599,751,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/8-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"8-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"8-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"8-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"8-2-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"8-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(600,751,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(601,751,'_imagify_status','already_optimized'),(602,752,'_wp_attached_file','2018/09/9-3.jpg'),(603,752,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/9-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-3-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"9-3-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-3-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"9-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(604,752,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(605,752,'_imagify_status','already_optimized'),(606,752,'_oembed_fde457ac52ce3865c4ae7151b4405e7f','<blockquote class=\"wp-embedded-content\" data-secret=\"FwgISAlmrj\"><a href=\"https://mystock.themeisle.com/photo/alley-3/\">Alley</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://mystock.themeisle.com/photo/alley-3/embed/#?secret=FwgISAlmrj\" data-secret=\"FwgISAlmrj\" width=\"600\" height=\"338\" title=\"&#8220;Alley&#8221; &#8212; mystock.photos - Free Stock Images\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(607,752,'_oembed_time_fde457ac52ce3865c4ae7151b4405e7f','1547033421'),(608,753,'_wp_attached_file','2018/09/blog3-3.jpg'),(609,753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2018/09/blog3-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blog3-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blog3-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"blog3-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"blog3-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"blog3-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(610,753,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(611,753,'_imagify_status','already_optimized'),(612,753,'_oembed_a675d679a638710603fde40ee0ae522b','{{unknown}}'),(613,754,'_wp_attached_file','2018/09/video-bg-2.jpg'),(614,754,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:22:\"2018/09/video-bg-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"video-bg-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"video-bg-2-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"video-bg-2-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"video-bg-2-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:22:\"video-bg-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(615,754,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(616,754,'_imagify_status','already_optimized'),(617,755,'_wp_attached_file','2018/09/work-4-2.jpg'),(618,755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1112;s:6:\"height\";i:600;s:4:\"file\";s:20:\"2018/09/work-4-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"work-4-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"work-4-2-300x162.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"work-4-2-768x414.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:414;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"work-4-2-1024x553.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:20:\"work-4-2-930x600.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:600;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:{}}}'),(619,755,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(620,755,'_imagify_status','already_optimized'),(621,756,'_wp_attached_file','2018/12/nv-gutenberg-1-2.jpg'),(622,756,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:28:\"2018/12/nv-gutenberg-1-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"nv-gutenberg-1-2-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:28:\"nv-gutenberg-1-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(623,757,'_wp_attached_file','2018/10/Pasted_image_at_2018-10-29__2_15_PM-2.png'),(624,757,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:586;s:4:\"file\";s:49:\"2018/10/Pasted_image_at_2018-10-29__2_15_PM-2.png\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-2-300x114.png\";s:5:\"width\";i:300;s:6:\"height\";i:114;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-2-768x293.png\";s:5:\"width\";i:768;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Pasted_image_at_2018-10-29__2_15_PM-2-1024x391.png\";s:5:\"width\";i:1024;s:6:\"height\";i:391;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:49:\"Pasted_image_at_2018-10-29__2_15_PM-2-930x586.png\";s:5:\"width\";i:930;s:6:\"height\";i:586;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:{}}}'),(625,757,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:62423;s:14:\"optimized_size\";i:17115;s:7:\"percent\";d:72.5799999999999982946974341757595539093017578125;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3606;s:14:\"optimized_size\";i:2595;s:7:\"percent\";d:28.03999999999999914734871708787977695465087890625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:5639;s:14:\"optimized_size\";i:3877;s:7:\"percent\";d:31.25;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:14699;s:14:\"optimized_size\";i:9917;s:7:\"percent\";d:32.530000000000001136868377216160297393798828125;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21201;s:14:\"optimized_size\";i:14815;s:7:\"percent\";d:30.120000000000000994759830064140260219573974609375;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13026;s:14:\"optimized_size\";i:13012;s:7:\"percent\";d:0.11000000000000000055511151231257827021181583404541015625;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:6038;s:14:\"optimized_size\";i:4197;s:7:\"percent\";d:30.489999999999998436805981327779591083526611328125;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13427;s:14:\"optimized_size\";i:9350;s:7:\"percent\";d:30.3599999999999994315658113919198513031005859375;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:3894;s:14:\"optimized_size\";i:2779;s:7:\"percent\";d:28.629999999999999005240169935859739780426025390625;}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:143953;s:14:\"optimized_size\";i:77657;s:7:\"percent\";d:46.0499999999999971578290569595992565155029296875;}}'),(626,757,'_imagify_status','success'),(627,758,'_wp_attached_file','2018/10/neve-contact-winter-2.jpg'),(628,758,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:33:\"2018/10/neve-contact-winter-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"neve-contact-winter-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:33:\"neve-contact-winter-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(629,758,'_imagify_data','a:2:{s:5:\"sizes\";a:12:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:624113;s:14:\"optimized_size\";i:596966;s:7:\"percent\";d:4.3499999999999996447286321199499070644378662109375;}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:13326;s:14:\"optimized_size\";i:12954;s:7:\"percent\";d:2.79000000000000003552713678800500929355621337890625;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:85021;s:14:\"optimized_size\";i:81656;s:7:\"percent\";d:3.95999999999999996447286321199499070644378662109375;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:153520;s:14:\"optimized_size\";i:147381;s:7:\"percent\";d:4;}s:9:\"neve-blog\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:126819;s:14:\"optimized_size\";i:121719;s:7:\"percent\";d:4.019999999999999573674358543939888477325439453125;}s:21:\"woocommerce_thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:11058;s:14:\"optimized_size\";i:10832;s:7:\"percent\";d:2.04000000000000003552713678800500929355621337890625;}s:18:\"woocommerce_single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51870;s:14:\"optimized_size\";i:49801;s:7:\"percent\";d:3.9900000000000002131628207280300557613372802734375;}s:29:\"woocommerce_gallery_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:12:\"shop_catalog\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:11:\"shop_single\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}s:14:\"shop_thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:77:\"WELL DONE. This image is already compressed, no further compression required.\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1065727;s:14:\"optimized_size\";i:1021309;s:7:\"percent\";d:4.1699999999999999289457264239899814128875732421875;}}'),(630,758,'_imagify_status','success'),(631,759,'_wp_attached_file','2018/09/1-2-3.jpg'),(632,759,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:17:\"2018/09/1-2-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"1-2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"1-2-3-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"1-2-3-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"1-2-3-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"1-2-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524917188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(633,760,'_wp_attached_file','2018/10/cropped-neve_onlight-2.png'),(634,760,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:34:\"2018/10/cropped-neve_onlight-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cropped-neve_onlight-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cropped-neve_onlight-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;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:{}}}'),(635,760,'_wp_attachment_context','site-icon'),(636,761,'_wp_attached_file','2018/10/neve_demo-2.png'),(637,761,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:23:\"2018/10/neve_demo-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"neve_demo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"neve_demo-2-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(638,762,'_wp_attached_file','2018/12/nv-1-1-2.jpg'),(639,762,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:20:\"2018/12/nv-1-1-2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"nv-1-1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"nv-1-1-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"nv-1-1-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"nv-1-1-2-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:20:\"nv-1-1-2-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(640,763,'_wp_attached_file','2018/12/nv-3-3.jpg'),(641,763,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:673;s:4:\"file\";s:18:\"2018/12/nv-3-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-3-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-3-3-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-3-3-529x620.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:620;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:{}}}'),(642,764,'_wp_attached_file','2018/12/nv-1-4.jpg'),(643,764,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:18:\"2018/12/nv-1-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-1-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-1-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nv-1-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"nv-1-4-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-1-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(644,765,'_wp_attached_file','2018/12/nv-team1-2.jpg'),(645,765,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team1-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team1-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team1-2-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(646,766,'_wp_attached_file','2018/12/nv-team2-3.jpg'),(647,766,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team2-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team2-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team2-3-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(648,767,'_wp_attached_file','2018/12/nv-team3-3.jpg'),(649,767,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team3-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team3-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team3-3-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(650,768,'_wp_attached_file','2018/12/nv-team4-3.jpg'),(651,768,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:22:\"2018/12/nv-team4-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"nv-team4-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"nv-team4-3-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(652,769,'_wp_attached_file','2018/12/nv-5-3.jpg'),(653,769,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-5-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-5-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-5-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(654,770,'_wp_attached_file','2018/12/nv-4-3.jpg'),(655,770,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-4-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-4-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-4-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(656,771,'_wp_attached_file','2018/12/nv-6-3.jpg'),(657,771,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-6-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-6-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-6-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(658,772,'_wp_attached_file','2018/12/nv-big-title-sprites1-2.png'),(659,772,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:168;s:4:\"file\";s:35:\"2018/12/nv-big-title-sprites1-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"nv-big-title-sprites1-2-55x150.png\";s:5:\"width\";i:55;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:{}}}'),(660,773,'_wp_attached_file','2018/12/neve-play1-2.png'),(661,773,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:24:\"2018/12/neve-play1-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:{}}}'),(662,774,'_wp_attached_file','2018/12/nv-key-points-sprites2-2.png'),(663,774,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:78;s:6:\"height\";i:220;s:4:\"file\";s:36:\"2018/12/nv-key-points-sprites2-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"nv-key-points-sprites2-2-78x150.png\";s:5:\"width\";i:78;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:{}}}'),(664,775,'_wp_attached_file','2018/12/nv-stats-sprites-2.png'),(665,775,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:186;s:4:\"file\";s:30:\"2018/12/nv-stats-sprites-2.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"nv-stats-sprites-2-50x150.png\";s:5:\"width\";i:50;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:{}}}'),(666,776,'_wp_attached_file','2018/12/nv-benefits-sprites1-2.png'),(667,776,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:373;s:4:\"file\";s:34:\"2018/12/nv-benefits-sprites1-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"nv-benefits-sprites1-2-60x150.png\";s:5:\"width\";i:60;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"nv-benefits-sprites1-2-48x300.png\";s:5:\"width\";i:48;s:6:\"height\";i:300;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:{}}}'),(668,777,'_wp_attached_file','2018/12/nv-social-sprites2-2.png'),(669,777,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:122;s:4:\"file\";s:32:\"2018/12/nv-social-sprites2-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:{}}}'),(670,778,'_wp_attached_file','2019/01/boats-3.jpg'),(671,778,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2019/01/boats-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"boats-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"boats-3-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"boats-3-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"boats-3-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"boats-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(672,779,'_wp_attached_file','2019/01/eating-place-3.jpg'),(673,779,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:26:\"2019/01/eating-place-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"eating-place-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"eating-place-3-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"eating-place-3-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"eating-place-3-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:26:\"eating-place-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(674,780,'_wp_attached_file','2019/01/palm-fruits-3.jpg'),(675,780,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:25:\"2019/01/palm-fruits-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"palm-fruits-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"palm-fruits-3-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"palm-fruits-3-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"palm-fruits-3-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:25:\"palm-fruits-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(676,781,'_wp_attached_file','2019/01/sweet-cake-christmas-tree-3.jpg'),(677,781,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1352;s:4:\"file\";s:39:\"2019/01/sweet-cake-christmas-tree-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-3-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-3-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"sweet-cake-christmas-tree-3-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(678,782,'_customize_changeset_uuid','bec07797-e3a7-4d93-8cb6-ab714416e562'),(679,782,'neve_meta_disable_title','on'),(680,782,'neve_meta_content_width','70'),(681,783,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(682,783,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1555191294'),(683,783,'neve_meta_container','full-width'),(684,783,'neve_meta_sidebar','full-width'),(700,791,'_wp_attached_file','2019/04/pink-2254970_1920.jpg'),(686,783,'neve_meta_content_width','70'),(687,783,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(688,783,'_wxr_import_has_attachment_refs','1'),(689,784,'_wp_attached_file','2019/02/neve_demo-2.png'),(690,784,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:341;s:6:\"height\";i:262;s:4:\"file\";s:23:\"2019/02/neve_demo-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"neve_demo-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"neve_demo-2-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;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:{}}}'),(701,791,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1234;s:4:\"file\";s:29:\"2019/04/pink-2254970_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"pink-2254970_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"pink-2254970_1920-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"pink-2254970_1920-768x494.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:494;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"pink-2254970_1920-1024x658.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:29:\"pink-2254970_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D610\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(699,783,'_edit_last','1'),(698,783,'_edit_lock','1555199270:1'),(696,786,'_wp_attached_file','2019/04/placeholder-image-3.jpg'),(697,786,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2019/04/placeholder-image-3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"placeholder-image-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"placeholder-image-3-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"placeholder-image-3-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"placeholder-image-3-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"placeholder-image-3-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(702,783,'_thumbnail_id','604'),(703,783,'_wp_trash_meta_status','publish'),(704,783,'_wp_trash_meta_time','1555185347'),(705,783,'_wp_desired_post_slug','home'),(706,794,'_wp_attached_file','2019/04/flower-3415550_1920.jpg'),(707,794,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1283;s:4:\"file\";s:31:\"2019/04/flower-3415550_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"flower-3415550_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"flower-3415550_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"flower-3415550_1920-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"flower-3415550_1920-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"flower-3415550_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(708,795,'_wp_attached_file','2018/11/neve-facebook-1.png'),(709,795,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:27:\"2018/11/neve-facebook-1.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:{}}}'),(710,796,'_wp_attached_file','2018/11/neve-twitter-1.png'),(711,796,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:26:\"2018/11/neve-twitter-1.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:{}}}'),(712,797,'_wp_attached_file','2018/11/neve-instagram-1.png'),(713,797,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:30;s:4:\"file\";s:28:\"2018/11/neve-instagram-1.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:{}}}'),(714,798,'_wp_attached_file','2018/11/neve-googleplus-1.png'),(715,798,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:31;s:4:\"file\";s:29:\"2018/11/neve-googleplus-1.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:{}}}'),(716,799,'_wp_attached_file','2018/11/neve-play-1.png'),(717,799,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:80;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2018/11/neve-play-1.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:{}}}'),(718,800,'_wp_attached_file','2018/12/nv-1-5.jpg'),(719,800,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1066;s:4:\"file\";s:18:\"2018/12/nv-1-5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-1-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-1-5-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"nv-1-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"nv-1-5-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-1-5-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(721,801,'_wp_attached_file','2018/12/neve-business-growth-1-1.png'),(722,801,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:36:\"2018/12/neve-business-growth-1-1.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:{}}}'),(724,802,'_wp_attached_file','2018/12/neve-dollar-1-1.png'),(725,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:27:\"2018/12/neve-dollar-1-1.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:{}}}'),(727,803,'_wp_attached_file','2018/12/neve-clock-1-1.png'),(728,803,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:26:\"2018/12/neve-clock-1-1.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:{}}}'),(730,804,'_wp_attached_file','2018/12/neve-smile-1-1.png'),(731,804,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:45;s:6:\"height\";i:45;s:4:\"file\";s:26:\"2018/12/neve-smile-1-1.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:{}}}'),(733,805,'_wp_attached_file','2018/12/nv-3-4.jpg'),(734,805,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:529;s:6:\"height\";i:673;s:4:\"file\";s:18:\"2018/12/nv-3-4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-3-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-3-4-236x300.jpg\";s:5:\"width\";i:236;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:18:\"nv-3-4-529x620.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:620;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:{}}}'),(736,806,'_wp_attached_file','2018/12/neve-envelope-1-1.png'),(737,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:55;s:4:\"file\";s:29:\"2018/12/neve-envelope-1-1.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:{}}}'),(739,807,'_wp_attached_file','2018/12/neve-map-1-1.png'),(740,807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:54;s:6:\"height\";i:48;s:4:\"file\";s:24:\"2018/12/neve-map-1-1.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:{}}}'),(742,808,'_wp_attached_file','2018/12/neve-photography-1-1.png'),(743,808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:44;s:4:\"file\";s:32:\"2018/12/neve-photography-1-1.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:{}}}'),(745,809,'_wp_attached_file','2018/12/neve-phone-1-1.png'),(746,809,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:55;s:6:\"height\";i:50;s:4:\"file\";s:26:\"2018/12/neve-phone-1-1.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:{}}}'),(748,810,'_wp_attached_file','2018/12/neve-chart-up-1-1.png'),(749,810,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:29:\"2018/12/neve-chart-up-1-1.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:{}}}'),(751,811,'_wp_attached_file','2018/12/neve-user-1-1.png'),(752,811,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2018/12/neve-user-1-1.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:{}}}'),(754,812,'_wp_attached_file','2018/12/neve-heart-1-1.png'),(755,812,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:26:\"2018/12/neve-heart-1-1.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:{}}}'),(757,813,'_wp_attached_file','2018/12/neve-gift-1-1.png'),(758,813,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:25:\"2018/12/neve-gift-1-1.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:{}}}'),(760,814,'_wp_attached_file','2018/12/nv-5-4.jpg'),(761,814,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-5-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-5-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-5-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(763,815,'_wp_attached_file','2018/12/nv-4-4.jpg'),(764,815,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-4-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-4-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-4-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(766,816,'_wp_attached_file','2018/12/nv-6-4.jpg'),(767,816,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:540;s:6:\"height\";i:360;s:4:\"file\";s:18:\"2018/12/nv-6-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"nv-6-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"nv-6-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(769,817,'_wp_attached_file','2018/12/nv-testimonial-signature-1.png'),(770,817,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:334;s:6:\"height\";i:61;s:4:\"file\";s:38:\"2018/12/nv-testimonial-signature-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"nv-testimonial-signature-1-150x61.png\";s:5:\"width\";i:150;s:6:\"height\";i:61;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"nv-testimonial-signature-1-300x55.png\";s:5:\"width\";i:300;s:6:\"height\";i:55;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:{}}}'),(772,818,'_wp_attached_file','2018/12/alexis-blockquote6-1.jpg'),(773,818,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:634;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2018/12/alexis-blockquote6-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote6-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"alexis-blockquote6-1-300x237.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:237;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:{}}}'),(775,819,'_wp_attached_file','2018/12/neve-unlimited-revisions2-1.png'),(776,819,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:52;s:6:\"height\";i:59;s:4:\"file\";s:39:\"2018/12/neve-unlimited-revisions2-1.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:{}}}'),(778,820,'_wp_attached_file','2018/12/neve-ultimate-perfection-1-1.png'),(779,820,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:40:\"2018/12/neve-ultimate-perfection-1-1.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:{}}}'),(856,838,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We design things with love and passion.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-3.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Analytics release series A financing launch party interaction design android angel investor. Vesting period social media sales conversion launch party rockstar incubator customer social proof graphical user interface technology supply chain. Non-disclosure agreement rockstar creative partner network launch party social proof paradigm shift long tail influencer.\\u00a0<\\/p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(781,821,'_wp_attached_file','2018/12/neve-smart-experience1-1.png'),(782,821,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:57;s:6:\"height\";i:55;s:4:\"file\";s:36:\"2018/12/neve-smart-experience1-1.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:{}}}'),(784,822,'_wp_attached_file','2018/12/neve-strict-deadline1-1.png'),(785,822,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:53;s:6:\"height\";i:59;s:4:\"file\";s:35:\"2018/12/neve-strict-deadline1-1.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:{}}}'),(855,838,'_elementor_template_type','post'),(787,823,'_wp_attached_file','2018/12/neve-reputed-copmany1-1.png'),(788,823,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:35;s:6:\"height\";i:59;s:4:\"file\";s:35:\"2018/12/neve-reputed-copmany1-1.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:{}}}'),(790,824,'_wp_attached_file','2018/12/nv-team1-4-1.jpg'),(791,824,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2018/12/nv-team1-4-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"nv-team1-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"nv-team1-4-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(854,838,'_elementor_edit_mode','builder'),(793,825,'_wp_attached_file','2018/12/nv-team2-1-1.jpg'),(794,825,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2018/12/nv-team2-1-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"nv-team2-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"nv-team2-1-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(796,826,'_wp_attached_file','2018/12/nv-team3-1-1.jpg'),(797,826,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2018/12/nv-team3-1-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"nv-team3-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"nv-team3-1-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(799,827,'_wp_attached_file','2018/12/nv-team4-1-1.jpg'),(800,827,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:526;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2018/12/nv-team4-1-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"nv-team4-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"nv-team4-1-1-292x300.jpg\";s:5:\"width\";i:292;s:6:\"height\";i:300;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:{}}}'),(853,838,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(802,828,'_wp_attached_file','2019/01/sweet-cake-christmas-tree-4.jpg'),(803,828,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1352;s:4:\"file\";s:39:\"2019/01/sweet-cake-christmas-tree-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-4-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-4-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"sweet-cake-christmas-tree-4-1024x676.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:676;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:39:\"sweet-cake-christmas-tree-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(804,828,'_wxr_import_parent','552'),(805,829,'_wp_attached_file','2019/01/palm-fruits-4.jpg'),(806,829,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:25:\"2019/01/palm-fruits-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"palm-fruits-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"palm-fruits-4-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"palm-fruits-4-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"palm-fruits-4-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:25:\"palm-fruits-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(807,829,'_wxr_import_parent','528'),(808,830,'_wp_attached_file','2019/01/boats-4.jpg'),(809,830,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2019/01/boats-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"boats-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"boats-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"boats-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"boats-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"boats-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(810,830,'_wxr_import_parent','520'),(811,831,'_wp_attached_file','2019/01/eating-place-4.jpg'),(812,831,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1371;s:4:\"file\";s:26:\"2019/01/eating-place-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"eating-place-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"eating-place-4-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"eating-place-4-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"eating-place-4-1024x686.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:686;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:26:\"eating-place-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(813,831,'_wxr_import_parent','518'),(814,832,'_wp_attached_file','2018/09/1-2-4.jpg'),(815,832,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3872;s:6:\"height\";i:2592;s:4:\"file\";s:17:\"2018/09/1-2-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"1-2-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"1-2-4-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"1-2-4-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"1-2-4-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:17:\"1-2-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D80\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1524917188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"110\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(816,832,'_wxr_import_parent','57'),(817,833,'_wp_attached_file','2018/09/9-4.jpg'),(818,833,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1071;s:4:\"file\";s:15:\"2018/09/9-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"9-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"9-4-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"9-4-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"9-4-1024x685.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:685;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:15:\"9-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(819,833,'_wxr_import_parent','56'),(820,834,'_wp_attached_file','2018/09/blog3-4.jpg'),(821,834,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:19:\"2018/09/blog3-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"blog3-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"blog3-4-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:19:\"blog3-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"blog3-4-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:19:\"blog3-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(822,834,'_wxr_import_parent','54'),(823,835,'_wp_attached_file','2019/04/placeholder-image-4.jpg'),(824,835,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"file\";s:31:\"2019/04/placeholder-image-4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"placeholder-image-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"placeholder-image-4-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"placeholder-image-4-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"placeholder-image-4-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"placeholder-image-4-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(825,836,'_customize_changeset_uuid','34880451-a07a-4a63-98c7-4620bd79a0c5'),(826,836,'_yoast_wpseo_content_score','30'),(827,836,'_wxr_import_user_slug','andreib'),(828,836,'_wp_page_template','default'),(829,836,'neve_meta_content_width','70'),(830,836,'neve_meta_disable_title','on'),(831,837,'_wp_page_template','default'),(832,837,'_yoast_wpseo_content_score','30'),(833,837,'_elementor_edit_mode','builder'),(834,837,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (835,837,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":946,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/landscape-967630_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(127,70,51,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/#contact\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":966,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/flower-1307578_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Services\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"18c1c901\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e18e74\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"447302d3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"2bb743e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"740722c8\",\"elType\":\"widget\",\"settings\":{\"title\":\"We treat the following cases\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62f47e22\",\"elType\":\"widget\",\"settings\":{\"title\":\"and more ... ...\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c1a3ad7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"3ee22d02\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"0d46ae6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/flowers-429041_640.jpg\",\"id\":1064},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"30bc9305\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"\",\"description_text\":\"\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"e7e87cb\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"Addictions\",\"text\":\"\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"Depression & Anxiety\",\"text\":\"\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"Work & Sport Injuries\",\"text\":\"\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"Diabetes, High Blood Pressure\",\"text\":\"\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"Stroke Rehabilitation\",\"text\":\"\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"Skin Problem\",\"text\":\"\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"2dcf493f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Have a question\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"43fced58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"a0c85bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/ornamental-poppies-139409_640.jpg\",\"id\":1066},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"18934051\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"\",\"description_text\":\"\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"cd42178\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"Digestion Probelem\",\"text\":\"\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"Paralyes\",\"text\":\"\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"Weight Loss\",\"text\":\"\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"Fibromylgia & Chronic Fatigue\",\"text\":\"\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"Insomnia & Migraines\",\"text\":\"\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"Men\'s Health\",\"text\":\"\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"f3ebfcc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Where to find us\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5648ed69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"7b51e17\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2418339_640.jpg\",\"id\":1069},\"image_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"52d9e4fd\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"\",\"description_text\":\"\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"453666dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"Facial Rejuvenation\",\"text\":\"\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"Ear & Nose Problems\",\"text\":\"\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"Poor Circulation\",\"text\":\"\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"PMS & Hormone Imbalance\",\"text\":\"\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"Infertility\",\"text\":\"\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"Women\'s Health\",\"text\":\"\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"4023ab5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"make an appointment\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c9f183\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"a0dca89\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"530e13b\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"e93de4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pain relief with <br>just one needle\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2044e9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"99983dd\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"video_type\":\"vimeo\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"b21c7e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Weight Management <br> Breathing yourself thin\",\"link\":{\"url\":\"https:\\/\\/ibreathin.com\\/\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"e5ac34b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"67b1e03\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"07e8f0b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazing story from one of our stroke rehabilitation patient\",\"header_size\":\"h4\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"750\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Magic-needle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Magic Needle show\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Gao\'s Acupuncture Demonstration<br>\\nPain relief with only one needle<br>\\nJanuary 17, 2004 in Kansas City\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sciatic Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/vimeo.com\\/313597399\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"155e131\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597399\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":985,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-676653_1920.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NeckPain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d8d4e\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597516E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597516\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":980,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675124_1920.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lupus pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2c5bfd\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597633\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":982,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675125_1920.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Toe Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d81c21c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":983,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675123_1920.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":731},\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We committed to provide quality patient-centered care,<br>\\nwhich promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69b26bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fbd8dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1a74396\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Passionate - we care\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"b84ce0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"primary_color\":\"#38c695\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b1a6cb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Well Trained - knowledgeable\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"da2751b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"primary_color\":\"#b27cf5\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bd8f4e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Experienced - years practice\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"40e3a40\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d042592\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.643,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d491aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you need help?\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.357,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"b1eae8c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Articles\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nThere are plenty of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":961,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/child-316511_1280.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"medium\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83d15bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/q-a\\/\\\">Q &amp; A on Traditional Chinese Medicine<\\/a><\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/tcm-introduction\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/stroke-reseach\\/\\\">The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/a><\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/stroke\\/\\\">Stroke Rehabilitation and Traditional Chinese Medicine<\\/a><\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/heart\\/\\\">TCM and Heart Diseases<\\/a><\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/infertility\\/\\\">Traditional Chinese Medicine and Infertility<\\/a><\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_1920.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"09\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need an expert?\\nYou are more than welcomed to leave your contact info\\nand we will be in touch shortly\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"rgba(178,178,178,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"79\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c28662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Contact us by phone\",\"description_text\":\"(316)-691-8811\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"ade6121\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160\\nWichita, KS 67207\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"47234fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"df624f7\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"d1d566a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15a537d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send us an email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68106e0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"988\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1576,992,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1567,990,'_elementor_version','2.5.13'),(1591,994,'_elementor_template_type','post'),(1592,994,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":946,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/landscape-967630_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(127,70,51,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":966,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/flower-1307578_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Services\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"750\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Magic-needle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Magic Needle show\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Gao\'s Acupuncture Demonstration<br>\\nPain relief with only one needle<br>\\nJanuary 17, 2004 in Kansas City\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sciatic Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/vimeo.com\\/313597399\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"155e131\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597399\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":985,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-676653_1920.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NeckPain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d8d4e\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597516E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597516\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":980,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675124_1920.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lupus pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2c5bfd\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597633\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":982,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675125_1920.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Toe Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d81c21c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":983,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675123_1920.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":731},\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We committed to provide quality patient-centered care,<br>\\nwhich promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69b26bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fbd8dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1a74396\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Passionate - we care\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"b84ce0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"primary_color\":\"#38c695\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b1a6cb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Well Trained - knowledgeable\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"da2751b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"primary_color\":\"#b27cf5\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bd8f4e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Experienced - years practice\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"40e3a40\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d042592\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.643,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d491aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you need help?\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.357,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"b1eae8c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Articles\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nThere are plenty of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":961,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/child-316511_1280.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"medium\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83d15bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li>Q &amp; A on Traditional Chinese Medicine<\\/li><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/tcm-introduction\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/li><li>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/li><li>Stroke Rehabilitation and Traditional Chinese Medicine<\\/li><li>TCM and Heart Diseases<\\/li><li>Traditional Chinese Medicine and Infertility<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_1920.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need an expert?\\nYou are more than welcomed to leave your contact info\\nand we will be in touch shortly\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"rgba(178,178,178,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"79\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c28662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us at 316-691-8811\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"379f3ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"\",\"description_text\":\"\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160\\nWichita, KS 67207\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"47234fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"df624f7\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"d1d566a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15a537d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send us an email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68106e0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"988\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1569,991,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1570,991,'_elementor_edit_mode','builder'),(1571,991,'_elementor_template_type','post'),(1572,991,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":946,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/landscape-967630_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"rgba(127,70,51,0)\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"center center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":966,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/flower-1307578_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1200\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Services\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_custom_dimension\":{\"width\":\"1000\",\"height\":\"750\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Magic-needle\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Magic Needle show\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Gao\'s Acupuncture Demonstration<br>\\nPain relief with only one needle<br>\\nJanuary 17, 2004 in Kansas City\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sciatic Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/vimeo.com\\/313597399\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"155e131\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597399\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":985,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-676653_1920.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NeckPain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d8d4e\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597516E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597516\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":980,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675124_1920.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lupus pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2c5bfd\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597633\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":982,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675125_1920.jpg\"},\"image_size\":\"full\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Toe Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d81c21c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":983,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/chinese-675123_1920.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":731},\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We committed to provide quality patient-centered care,<br>\\nwhich promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69b26bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5fbd8dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"f7a6f78\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-heart\",\"primary_color\":\"#fc5f45\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1a74396\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Passionate - we care\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"b84ce0a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"b353a42\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-book\",\"primary_color\":\"#38c695\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"b1a6cb7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Well Trained - knowledgeable\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true},{\"id\":\"da2751b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"4f62bc4\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-plus-circle\",\"primary_color\":\"#b27cf5\"},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"bd8f4e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Experienced - years practice\",\"description_text\":\"\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"40e3a40\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"d042592\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.643,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d491aa8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Do you need help?\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"043d9c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.357,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"b1eae8c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2237f7\",\"button_background_hover_color\":\"#a620e5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"Articles\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Articles\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"\\nThere are plenty of information about Traditional Chinese Medicine and its implications on diagnosis and treatment of a variety of issues. Here you will find articles written by Dr. Qizhi Gao to help explain the essential theory behind the many imbalances we face within our bodies.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":961,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/child-316511_1280.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"medium\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"83d15bf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<ol><li><a href=\\\"https:\\/\\/test.evergreenwellness.com\\/tcm-introduction\\/\\\">Traditional Chinese Medicine: Holistic Concept, Dynamic View and Natural Therapies<\\/a><\\/li><li>The Efficacy of Acupuncture Combined with Conventional Multidisciplinary Western Rehabilitation \\u2013 A Randomized Controlled Trial\\u200b<\\/li><li>Stroke Rehabilitation and Traditional Chinese Medicine<\\/li><li>TCM and Heart Diseases<\\/li><li>Traditional Chinese Medicine and Infertility<\\/li><\\/ol>\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":902,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nature-4110060_1920.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Need an expert?\\nYou are more than welcomed to leave your contact info\\nand we will be in touch shortly\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"rgba(178,178,178,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"79\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3c28662\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":104,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us at 316-691-8811\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"379f3ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"\",\"description_text\":\"\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"1520 S. Webb Road, Suite 160\\nWichita, KS 67207\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#000000\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#000000\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"47234fa\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"df624f7\",\"elType\":\"widget\",\"settings\":{\"address\":\"1520 S. Webb Road, Suite 160 Wichita, KS 67207\"},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"d1d566a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"15a537d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Send us an email\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"68106e0\",\"elType\":\"widget\",\"settings\":{\"shortcode\":\"[contact-form-7 id=\\\"988\\\" title=\\\"Contact form 1\\\"]\"},\"elements\":[],\"widgetType\":\"shortcode\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(836,837,'_elementor_version','2.5.14'),(837,837,'_oembed_12e122f8b69aa46d9b421abbe9bb2844','<iframe width=\"840\" height=\"473\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(838,837,'_oembed_time_12e122f8b69aa46d9b421abbe9bb2844','1536217231'),(839,837,'_oembed_f547c62b05824be493b1305d35655728','<iframe width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(840,837,'_oembed_time_f547c62b05824be493b1305d35655728','1536223657'),(841,837,'_oembed_4ce7b3de381bbd41c4b8543a7ecb20d1','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/9uOETcuFjbE?feature=oembed&enablejsapi=1&origin=https://demo.themeisle.com/neve\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(842,837,'_oembed_time_4ce7b3de381bbd41c4b8543a7ecb20d1','1536240167'),(843,837,'_oembed_19155eb74d8d1d2a76fc88956017d70a','<iframe width=\"750\" height=\"422\" src=\"https://www.youtube.com/embed/YHhK_twfYB8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(844,837,'_oembed_time_19155eb74d8d1d2a76fc88956017d70a','1536322272'),(845,837,'neve_meta_content_width','70'),(860,837,'_edit_lock','1555878658:1'),(873,840,'_elementor_data','[{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}]'),(857,838,'_elementor_version','2.5.9'),(858,838,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(900,848,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(899,848,'_elementor_version','2.5.9'),(901,849,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(895,848,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(896,848,'_elementor_edit_mode','builder'),(897,848,'_elementor_template_type','post'),(898,848,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":844,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossoms-3327498_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":846,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossom-4114044_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"529\",\"height\":\"673\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p><strong>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/strong><\\/p><p><strong>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/strong><\\/p><p><strong>\\u00a0<\\/strong><\\/p><p><br \\/><br \\/><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(880,843,'_wp_attached_file','2019/04/water-lilies-3491870_1920.jpg'),(881,843,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:37:\"2019/04/water-lilies-3491870_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"water-lilies-3491870_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"water-lilies-3491870_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"water-lilies-3491870_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"water-lilies-3491870_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:37:\"water-lilies-3491870_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"14\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:5:\"X-T10\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"200\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:16:\"0.00714285714286\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(882,844,'_wp_attached_file','2019/04/cherry-blossoms-3327498_1920.jpg'),(883,844,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:40:\"2019/04/cherry-blossoms-3327498_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cherry-blossoms-3327498_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"cherry-blossoms-3327498_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"cherry-blossoms-3327498_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"cherry-blossoms-3327498_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:40:\"cherry-blossoms-3327498_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D5200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"175\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(884,845,'_wp_attached_file','2019/04/water-lily-2536194_1920.jpg'),(885,845,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:35:\"2019/04/water-lily-2536194_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"water-lily-2536194_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"water-lily-2536194_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"water-lily-2536194_1920-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"water-lily-2536194_1920-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:35:\"water-lily-2536194_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"210\";s:3:\"iso\";s:3:\"220\";s:13:\"shutter_speed\";s:6:\"0.0005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(868,840,'_elementor_template_type','section'),(869,840,'_elementor_edit_mode','builder'),(870,841,'_elementor_template_type','page'),(871,841,'_elementor_edit_mode','builder'),(872,840,'_wp_page_template','default'),(874,842,'_elementor_template_type','page'),(875,842,'_elementor_edit_mode','builder'),(876,842,'_wp_page_template','default'),(877,842,'_elementor_data','[{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}]'),(878,840,'_elementor_version','2.5.13'),(879,840,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(889,847,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(890,847,'_elementor_edit_mode','builder'),(887,846,'_wp_attached_file','2019/04/cherry-blossom-4114044_1920.jpg'),(888,846,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1276;s:4:\"file\";s:39:\"2019/04/cherry-blossom-4114044_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cherry-blossom-4114044_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cherry-blossom-4114044_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cherry-blossom-4114044_1920-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cherry-blossom-4114044_1920-1024x681.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:39:\"cherry-blossom-4114044_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"3\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(891,847,'_elementor_template_type','post'),(892,847,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We design things with love and passion.\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":60},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"442d57cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"525abbf3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d289969\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":164,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-dollar-1.png\"},\"title_text\":\"Fixed price projects\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2cd0ede8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6039d120\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":165,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-clock-1.png\"},\"title_text\":\"Receive on time\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4e0c8212\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2b96d326\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":166,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smile-1.png\"},\"title_text\":\"Satisfaction guaranteed\",\"description_text\":\"\",\"image_space\":{\"unit\":\"px\",\"size\":8},\"image_size\":{\"unit\":\"%\",\"size\":45},\"text_align\":\"center\",\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_text_transform\":\"uppercase\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":167,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-3.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Analytics release series A financing launch party interaction design android angel investor. Vesting period social media sales conversion launch party rockstar incubator customer social proof graphical user interface technology supply chain. Non-disclosure agreement rockstar creative partner network launch party social proof paradigm shift long tail influencer.\\u00a0<\\/p><p>Monetization validation success. Seed round channels product management. Customer non-disclosure agreement strategy android growth hacking ramen buyer.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(893,847,'_elementor_version','2.5.9'),(894,847,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(902,849,'_elementor_edit_mode','builder'),(903,849,'_elementor_template_type','post'),(904,849,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":844,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossoms-3327498_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":846,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossom-4114044_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"529\",\"height\":\"673\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p><p>\\u00a0<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(905,849,'_elementor_version','2.5.13'),(906,849,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(915,851,'_wp_attached_file','2019/04/celandine-2206826_1920.jpg'),(916,851,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:936;s:4:\"file\";s:34:\"2019/04/celandine-2206826_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"celandine-2206826_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"celandine-2206826_1920-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"celandine-2206826_1920-768x374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"celandine-2206826_1920-1024x499.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:499;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:34:\"celandine-2206826_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 80D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"250\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(923,853,'_elementor_version','2.5.13'),(924,853,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(921,853,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (922,853,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":851,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/celandine-2206826_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer the best Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers only the best Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p><p>\\u00a0<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(919,853,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(920,853,'_elementor_edit_mode','builder'),(917,852,'_wp_attached_file','2019/04/orchid-4066137_1920.jpg'),(918,852,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/04/orchid-4066137_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"orchid-4066137_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"orchid-4066137_1920-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"orchid-4066137_1920-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"orchid-4066137_1920-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"orchid-4066137_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"DMC-LX15\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"8.8\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(937,855,'_elementor_version','2.5.13'),(938,855,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(935,855,'_elementor_template_type','post'),(936,855,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":851,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/celandine-2206826_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":168,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-envelope-1.png\"},\"title_text\":\"Web Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":169,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-map-1.png\"},\"title_text\":\"UX Design\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":170,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-photography-1.png\"},\"title_text\":\"Photography\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":171,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-phone-1.png\"},\"title_text\":\"App Development\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(933,855,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(934,855,'_elementor_edit_mode','builder'),(957,861,'_elementor_version','2.5.13'),(958,861,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(953,861,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(954,861,'_elementor_edit_mode','builder'),(955,861,'_elementor_template_type','post'),(956,861,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":851,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/celandine-2206826_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our focus.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Massage\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"Analytics release series A financing launch party interaction design android angel investor.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(947,858,'_wp_attached_file','2019/04/mhrf-cpmh17815.jpg'),(948,858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:600;s:4:\"file\";s:26:\"2019/04/mhrf-cpmh17815.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"mhrf-cpmh17815-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"mhrf-cpmh17815-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:14:\"mhrf-cpmh17815\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:14:\"mhrf-cpmh17815\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(949,859,'_wp_attached_file','2019/04/nmm.jpg'),(950,859,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:401;s:4:\"file\";s:15:\"2019/04/nmm.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"nmm-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"nmm-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Copyright:www.quanjing.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:15:\"east-a21-154586\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"east-a21-154586\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(951,860,'_wp_attached_file','2019/04/th.jpg'),(952,860,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:399;s:4:\"file\";s:14:\"2019/04/th.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"th-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:14:\"th-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;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:{}}}'),(969,863,'_elementor_version','2.5.13'),(970,863,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(965,863,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(966,863,'_elementor_edit_mode','builder'),(967,863,'_elementor_template_type','post'),(968,863,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":851,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/celandine-2206826_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":205,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team1-4.jpg\"},\"title_text\":\"Daniele Johnson\",\"description_text\":\"Founder & CEO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"title_text\":\"Summer Geller\",\"description_text\":\"CTO\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"7f67d988\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":207,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team3-1.jpg\"},\"title_text\":\"Marissa Adams\",\"description_text\":\"Lead Developer\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"2db5ca97\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":208,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team4-1.jpg\"},\"title_text\":\"Jennifer Gilmore\",\"description_text\":\"Marketing\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#feb960\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(971,864,'_wp_attached_file','2019/04/gao-1.jpg'),(972,864,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:287;s:6:\"height\";i:275;s:4:\"file\";s:17:\"2019/04/gao-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"gao-1-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:\"1\";s:8:\"keywords\";a:0:{}}}'),(973,865,'_wp_attached_file','2019/04/carrie-1024x1024.jpg'),(974,865,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:28:\"2019/04/carrie-1024x1024.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"carrie-1024x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"carrie-1024x1024-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"carrie-1024x1024-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:28:\"carrie-1024x1024-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(981,867,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(982,867,'_elementor_edit_mode','builder'),(983,867,'_elementor_template_type','post'),(984,867,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":851,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/celandine-2206826_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"extended\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"49fef8b7\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true},{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":865,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/carrie-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3f3fd69\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"61d7c7d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"11ff35bb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"99e2714\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3fdd6dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"75dcf16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5310c853\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f20b1dd\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"3fc226a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"55ba82b6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"107f6173\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100},\"elements\":[{\"id\":\"5e77e376\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3512e52a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3347c44e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"323ce2ef\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(985,867,'_elementor_version','2.5.13'),(986,867,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(997,870,'_wp_attached_file','2019/04/tin-3518967_1920.jpg'),(998,870,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:28:\"2019/04/tin-3518967_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"tin-3518967_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"tin-3518967_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"tin-3518967_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"tin-3518967_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:28:\"tin-3518967_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"Canon EOS 1200D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"96\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(988,868,'_wp_attached_file','2019/04/IMG_0238-1024x1024.jpg'),(989,868,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:30:\"2019/04/IMG_0238-1024x1024.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"IMG_0238-1024x1024-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"IMG_0238-1024x1024-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"IMG_0238-1024x1024-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:30:\"IMG_0238-1024x1024-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1009,875,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1010,875,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b8dca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185},\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36b151a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1007,875,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1008,875,'_elementor_edit_mode','builder'),(999,871,'_wp_attached_file','2019/04/rose-165819_1920.jpg'),(1000,871,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1271;s:4:\"file\";s:28:\"2019/04/rose-165819_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"rose-165819_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"rose-165819_1920-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"rose-165819_1920-768x508.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:508;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"rose-165819_1920-1024x678.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:678;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:28:\"rose-165819_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1001,872,'_wp_attached_file','2019/04/ornamental-poppies-139409_1920.jpg'),(1002,872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2019/04/ornamental-poppies-139409_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"ornamental-poppies-139409_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"ornamental-poppies-139409_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"ornamental-poppies-139409_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"ornamental-poppies-139409_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:42:\"ornamental-poppies-139409_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1003,873,'_wp_attached_file','2019/04/red-roses-4232_1920.jpg'),(1004,873,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1440;s:4:\"file\";s:31:\"2019/04/red-roses-4232_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"red-roses-4232_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"red-roses-4232_1920-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"red-roses-4232_1920-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"red-roses-4232_1920-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:31:\"red-roses-4232_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1005,874,'_wp_attached_file','2019/04/roses-3418141_1920.jpg'),(1006,874,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1184;s:4:\"file\";s:30:\"2019/04/roses-3418141_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"roses-3418141_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"roses-3418141_1920-300x185.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"roses-3418141_1920-768x474.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:474;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"roses-3418141_1920-1024x631.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:631;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:30:\"roses-3418141_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1011,875,'_elementor_version','2.5.13'),(1012,875,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1023,879,'_elementor_version','2.5.13'),(1024,879,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1019,879,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1020,879,'_elementor_edit_mode','builder'),(1021,879,'_elementor_template_type','post'),(1022,879,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"bfc9eab\",\"elType\":\"widget\",\"settings\":{\"tabs\":[{\"tab_title\":\"<style>#alexis-video-section .elementor-accordion .elementor-accordion-item:first-child {display: none;} #alexis-video-section  .elementor-accordion .elementor-tab-title {padding: 0;}<\\/style>\",\"tab_content\":\"<div style=\\\"margin: -15px -20px;\\\">\\u00a0<\\/div>\",\"_id\":\"3577b51\"},{\"tab_title\":\"<img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-play.png\\\" style=\\\"display: block; margin: 0 auto;\\\"><p style=\\\"text-align: center; margin-top: 15px;\\\">Click to play the video<\\/p>\",\"tab_content\":\"<p>https:\\/\\/www.youtube.com\\/watch?v=YHhK_twfYB8<\\/p>\",\"_id\":\"a026f0a\"},{\"tab_title\":\"Accordion Title\",\"tab_content\":\"<p><a href=\\\"http:\\/\\/https:\\/\\/vimeo.com\\/313597238\\\">test<\\/a><\\/p>\",\"_id\":\"5ae39ff\"}],\"icon\":\"\",\"border_width\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"tab_active_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"title_typography_font_weight\":\"400\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"175\",\"bottom\":\"0\",\"left\":\"175\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"accordion\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"06\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-team2-1.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><span> Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership equity series A financing network effects user experience crowdsource. Burn rate stock bootstrapping direct mailing release client traction creative facebook monetization crowdfunding rockstar. <\\/span><\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9b8dca6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":188,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-testimonial-signature.png\"},\"image_size\":\"full\",\"align\":\"left\",\"space\":{\"unit\":\"%\",\"size\":29},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"align_mobile\":\"center\",\"space_mobile\":{\"unit\":\"%\",\"size\":70},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"width_mobile\":{\"unit\":\"px\",\"size\":185},\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"36b151a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"Melina Albrecht\",\"description_text\":\"Founder, TingTong\",\"position\":\"left\",\"title_size\":\"h6\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":20},\"image_size\":{\"unit\":\"%\",\"size\":0},\"image_size_tablet\":{\"unit\":\"%\",\"size\":18},\"content_vertical_alignment\":\"bottom\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"image_size_mobile\":{\"unit\":\"%\",\"size\":0},\"text_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"78\",\"isLinked\":false},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"714e48d1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"structure\":\"40\",\"background_position\":\"top center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"fb4fe8a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0ffaae9\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4b98aba1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":178,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-chart-up-1.png\"},\"title_text\":\"12,458+\",\"description_text\":\"Projects Completed\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"77566910\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"33fa507e\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5fb3d2f6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":179,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-user-1.png\"},\"title_text\":\"1,796+\",\"description_text\":\"Satisfied Clients\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fc404d0\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"38797393\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"30f793b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":180,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-heart-1.png\"},\"title_text\":\"1,000+\",\"description_text\":\"Positive Feedbacks\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"7a8c5c84\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false},{\"id\":\"b0518ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2f0c425c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-gift-1.png\"},\"title_text\":\"1,500+\",\"description_text\":\"Freebies Released\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":\"\"},\"title_bottom_space\":{\"unit\":\"px\",\"size\":15},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"description_color\":\"rgba(255,255,255,0.7)\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"10eb875e\",\"elType\":\"widget\",\"settings\":{\"icon\":\"fa fa-dot-circle-o\",\"primary_color\":\"#feb960\",\"size\":{\"unit\":\"px\",\"size\":20},\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1026,880,'_wp_attached_file','2019/04/bg-1024x878.jpg'),(1027,880,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:878;s:4:\"file\";s:23:\"2019/04/bg-1024x878.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"bg-1024x878-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"bg-1024x878-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"bg-1024x878-768x659.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:659;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"bg-1024x878-1024x878.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:878;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:23:\"bg-1024x878-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1028,881,'_wp_attached_file','2019/04/wb3.jpg'),(1029,881,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:580;s:4:\"file\";s:15:\"2019/04/wb3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"wb3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"wb3-300x290.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:290;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,882,'_wp_attached_file','2019/04/papaver-rhoeas-2439186_1920-1024x683.jpg'),(1031,882,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:683;s:4:\"file\";s:48:\"2019/04/papaver-rhoeas-2439186_1920-1024x683.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"papaver-rhoeas-2439186_1920-1024x683-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"papaver-rhoeas-2439186_1920-1024x683-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"papaver-rhoeas-2439186_1920-1024x683-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"papaver-rhoeas-2439186_1920-1024x683-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:48:\"papaver-rhoeas-2439186_1920-1024x683-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;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:{}}}'),(1045,885,'_elementor_version','2.5.13'),(1046,885,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1111,896,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2e84b2\",\"button_background_hover_color\":\"#2237f7\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":845,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2536194_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Magic Needle show\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dr. Gao\'s Acupuncture Demonstration\\nPain relief with only one needle\\nJanuary 17, 2004 in Kansas City\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":28},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":43,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sciatic Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"link\":{\"url\":\"https:\\/\\/vimeo.com\\/313597399\",\"is_external\":\"\",\"nofollow\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"155e131\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597399\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":844,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossoms-3327498_1920.jpg\"},\"image_size\":\"custom\",\"align_mobile\":\"center\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"NeckPain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b1d8d4e\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597516E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597516\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":845,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2536194_1920.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lupus pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f2c5bfd\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/313597633\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":846,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/cherry-blossom-4114044_1920.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Toe Pain\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d81c21c\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/315338770\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":843,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lilies-3491870_1920.jpg\"},\"image_size\":\"custom\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"},\"image_custom_dimension\":{\"width\":\"540\",\"height\":\"400\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1041,885,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1042,885,'_elementor_edit_mode','builder'),(1043,885,'_elementor_template_type','post');
INSERT INTO `wp9z_postmeta` VALUES (1044,885,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"our works\",\"link\":{\"url\":\"#pricing\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":845,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2536194_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1039,884,'_wp_attached_file','2019/04/rose-4102612_1920.jpg'),(1040,884,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:29:\"2019/04/rose-4102612_1920.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"rose-4102612_1920-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"rose-4102612_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"rose-4102612_1920-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"rose-4102612_1920-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"neve-blog\";a:4:{s:4:\"file\";s:29:\"rose-4102612_1920-930x620.jpg\";s:5:\"width\";i:930;s:6:\"height\";i:620;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D7200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"105\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1048,837,'_oembed_37788a5b43ef9b5c772e755e46f4c33d','{{unknown}}'),(1109,896,'_elementor_edit_mode','builder'),(1110,896,'_elementor_template_type','post'),(1049,886,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1050,886,'_elementor_edit_mode','builder'),(1051,886,'_elementor_template_type','post'),(1052,886,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#fc5f45\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"services\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":845,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2536194_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1053,886,'_elementor_version','2.5.13'),(1054,886,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1068,888,'_elementor_version','2.5.13'),(1069,888,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1065,888,'_elementor_edit_mode','builder'),(1066,888,'_elementor_template_type','post'),(1067,888,'_elementor_data','[{\"id\":\"6bea8fc8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":874,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/roses-3418141_1920.jpg\"},\"background_attachment\":\"scroll\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.3},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"top center\",\"background_size\":\"cover\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"75\",\"left\":\"0\",\"isLinked\":false},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_color_b\":\"#61ce70\"},\"elements\":[{\"id\":\"c206e1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"19cd67d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"We offer better Traditional Chinese Medicine services \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_shadow_text_shadow_type\":\"yes\",\"text_shadow_text_shadow\":{\"horizontal\":1,\"vertical\":0,\"blur\":16,\"color\":\"rgba(133,198,211,0.3)\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f510151\",\"elType\":\"widget\",\"settings\":{\"title\":\"Acupuncture and Chinese herbal Medicine\",\"header_size\":\"h6\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":38},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":85},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"18\",\"left\":\"100\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":37},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":53},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"18\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d916d4a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"25\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"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\":\"1a6c833\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5beccddc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make an appointment\",\"link\":{\"url\":\"https:\\/\\/ehr.unifiedpractice.com\\/Public\\/OnlineBooking?ClinicUid=f4756a7f-7845-476b-9b17-124ead54fd83\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"right\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#2e84b2\",\"button_background_hover_color\":\"#2237f7\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"040\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"45a6e595\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4b46d78c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact us\",\"link\":{\"url\":\"#more-features\",\"is_external\":\"\",\"nofollow\":\"\"},\"align\":\"left\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"button_text_color\":\"#ffffff\",\"background_color\":\"#38c695\",\"button_background_hover_color\":\"#00ba78\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"450d1c77\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170},\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"150\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"30\",\"isLinked\":false},\"gap\":\"no\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"15\",\"bottom\":\"65\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"72732b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.225,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"box_shadow_box_shadow_position\":\"inset\",\"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},\"content_position\":\"center\"},\"elements\":[{\"id\":\"790f6cb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":852,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/orchid-4066137_1920.jpg\"},\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"700\",\"height\":\"1100\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"76d9e84e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.775,\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"rgba(0,0,0,0.08)\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"-30\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"1b5a5a1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":5,\"color\":\"rgba(0,0,0,0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7707e49\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"abc5f2a\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"about\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"78e4827\",\"elType\":\"widget\",\"settings\":{\"title\":\"01\",\"header_size\":\"div\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"-200\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d82c840\",\"elType\":\"widget\",\"settings\":{\"title\":\"about us.\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eacaafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>Our Mission Statement:\\u00a0<\\/strong><\\/p><p>The Evergreen Wellness Center is committed to provide quality patient-centered care, which promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.<\\/p><p>\\u00a0Evergreen Wellness Center (EWC) is a full-service Traditional Chinese Medicine Clinic. Through our combination of Acupuncture, Herbal Therapy, Massage, Qigong Diet and Nutrition, we are here to enrich the quality of your life and help you feel better. EWC offers better Traditional Chinese Medicine services by a staff of experienced professionals and licensed clinicians to meet your specific need. We invite you to review our services and learn more about how our clinic can serve you.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"70\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"76\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"align_mobile\":\"center\",\"align_tablet\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15e600a\",\"elType\":\"widget\",\"settings\":[],\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f06e7f2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"40\",\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"box_shadow_box_shadow\":{\"horizontal\":1,\"vertical\":1,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.08)\"}},\"elements\":[{\"id\":\"ccceedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"473f0410\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"360713c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"15a7280c\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"7a76dcdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"_inline_size_mobile\":25,\"margin_mobile\":{\"unit\":\"px\",\"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\":\"3568e0d0\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"48c23e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"_inline_size_mobile\":25},\"elements\":[{\"id\":\"307d891d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"227f98f9\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42420674\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"f0b8220\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"focus\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"48d44fc9\",\"elType\":\"widget\",\"settings\":{\"title\":\"02\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\"},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-9}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52c6b62b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":47},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46b3e4aa\",\"elType\":\"widget\",\"settings\":{\"title\":\"Promotes the art and science of Traditional Chinese Medicine for each individual\\u2019s health and well-being.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":17},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"528ba527\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"gap\":\"no\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"186d9bc0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"141b2755\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":857,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/acupuncture_500-e1522635045797.jpg\"},\"title_text\":\"Acupuncture\",\"description_text\":\"An Acupuncturist inserts one or more fine needles into the patient\\u2019s body to adjust the energy flow.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":10},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5143c0bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"244551f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":858,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/mhrf-cpmh17815.jpg\"},\"title_text\":\"Herbal Medicine\",\"description_text\":\"Herbal medicine can be used to treat and also prevent various health problems.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":17},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"47f2315\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ac857b3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":859,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/nmm.jpg\"},\"title_text\":\"Oriental Bodywork\",\"description_text\":\"It is used for a variety of purposes, such as trauma, gynecology and pediatrics disorders.\",\"title_size\":\"h5\",\"image_space\":{\"unit\":\"px\",\"size\":21},\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#b27cf5\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"165f2ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_inline_size_tablet\":50,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e14aea7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":860,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/th.jpg\"},\"title_text\":\"Qigong\",\"description_text\":\"\\nQigong harmonizes body movement, breath and mental concentration for your well-being.\",\"title_size\":\"h5\",\"image_size\":{\"unit\":\"%\",\"size\":100},\"title_bottom_space\":{\"unit\":\"px\",\"size\":20},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#313131\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"25\",\"bottom\":\"53\",\"left\":\"25\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#feb960\",\"_box_shadow_box_shadow_type\":\"yes\",\"_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"38db10e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":882,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/papaver-rhoeas-2439186_1920-1024x683.jpg\"},\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"147\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"55\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false},\"background_size\":\"cover\",\"_element_id\":\"alexis-video-section\",\"background_position\":\"top center\"},\"elements\":[{\"id\":\"2221bd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"3cc6933\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"portfolio\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"8a5c274\",\"elType\":\"widget\",\"settings\":{\"title\":\"Explore Our Awesomeness\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ea570ad\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\"},\"elements\":[{\"id\":\"41a572d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"ff56ea2\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/313597238\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"a168c58\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"56bc82e\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/vimeo.com\\/194991450\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true},{\"id\":\"2379731\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null},\"elements\":[{\"id\":\"15e8815\",\"elType\":\"widget\",\"settings\":{\"youtube_url\":\"https:\\/\\/youtu.be\\/RTQGpPwn2BU\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/235215203\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"490119e0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"135\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"248fb2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"58a7a3d\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"team\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"3298cc2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"03\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-20}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d3209da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our team.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"439f6efd\",\"elType\":\"widget\",\"settings\":{\"title\":\"experienced professionals and licensed clinicians\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c45bd7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"7d384179\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"59469709\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":864,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/gao-1.jpg\"},\"title_text\":\"Qizhi Gao\",\"description_text\":\"D.O.M., Dipl. OM (NCCAOM)\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"3b95662\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Dr. Gao has practiced Traditional Chinese Medicine since 1980 and has more than 40 years experience as a Qigong practitioner and instructor. He is licensed by the state of New Mexico as a Doctor of Oriental Medicine and by the state of Kansas as an acupuncturist. He also holds a Diplomate of Oriental Medicine certified by the National Certification of Acupuncture and Oriental Medicine (NCCAOM).\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#38c695\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"53bd73e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":50},\"elements\":[{\"id\":\"79d7d03d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":868,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/IMG_0238-1024x1024.jpg\"},\"title_text\":\"Carrie Hao X. Shen\",\"description_text\":\" Lic. Acupuncturist  \",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\"},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"fe6fd26\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\"},\"title_text\":\"\",\"description_text\":\"Carrie Hao X. Shen is a Licensed Acupuncturist (L.Ac.), and completed 4000 hours Oriental Medicine Apprenticeship Program under Dr. Qizhi Gao in 2014. She specializes in the treatment of fertility issues, pain management, and digestive disorders.\\n\\nShe strongly believes in the body\\u2019s natural ability to heal itself, and also supports the integration of Eastern and Western medicine in treating illness and maintaining the best health possible.\\n\\nShe uses acupuncture, nutrition diet, and various mind and body practices, to treat health problems or prevent illnesses. Her goal of practicing is to improve the quality of life for patients through safe, effective, accessible, affordable and personalized care.\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":95},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_size\":\"h6\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"image_size_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"image_size_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"image_opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"thumbnail_size\":\"thumbnail\",\"position\":\"left\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ca0c55\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":880,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/bg-1024x878.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"50f0e18\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"4003745\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"testimonial\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bd03275\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f54b3e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials.\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee96e74\",\"elType\":\"widget\",\"settings\":{\"title\":\"Hear what our patient says\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f63963d\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"7ac636c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"2e47434\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":873,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/red-roses-4232_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d7fa2b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"78651f0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p><strong>From Google Review<\\/strong><\\/p><\\/div><div class=\\\"elementor-widget-container\\\"><div class=\\\"elementor-text-editor elementor-clearfix elementor-inline-editing\\\" data-elementor-setting-key=\\\"editor\\\" data-elementor-inline-editing-toolbar=\\\"advanced\\\"><p>Wow!!!! All I can say! I had SEVERE neck and shoulder pain for over 6 months with no relief from massages, Chiropractic care, muscle relaxers or physical therapy. After my first appointment at Evergreen Wellness I had MUCH improvement by day 2 with continued daily improvement. IM ABSOLUTELY AMAZED! Prior to my first visit I was totally ignorant to Acupuncture and figured since I had exhausted all other avenues it was worth a chance. I\\u2019m SO VERY GRATEFUL and still in disbelief of the rapid recovery I experienced. Moving forward Acupuncture will be my first option\\/Evergreen Wellness for any health problems I am experiencing.\\u00a0<br \\/>Thank you Doctor!!<\\/p><\\/div><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"631f2f9\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3bbfcc8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"custom_height_inner_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"custom_height_inner_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"shape_divider_top_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_top_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"shape_divider_bottom_height_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"fa462c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.661,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":5,\"color\":\"rgba(0,0,0,0.2)\"},\"animation\":\"zoomIn\",\"animation_duration\":\"slow\",\"content_position\":\"center\",\"box_shadow_box_shadow_position\":\"inset\",\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"6e7f275\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":845,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2019\\/04\\/water-lily-2536194_1920.jpg\"},\"image_size\":\"full\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":20,\"color\":\"rgba(0,0,0,0.2)\"},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"image_border_color\":\"rgba(0,0,0,0.2)\",\"_background_background\":\"classic\",\"_box_shadow_box_shadow\":{\"horizontal\":15,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.5)\"},\"_box_shadow_box_shadow_position\":\"inset\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"width\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_tablet\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"opacity_hover\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"caption_space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0156d72\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.339,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"background_image\":{\"id\":191,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/alexis-blockquote6.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#61ce70\",\"_inline_size_tablet\":100,\"background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"background_overlay_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"background_overlay_hover_opacity\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"css_filters_hover_blur\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"css_filters_hover_brightness\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_contrast\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_saturate\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"css_filters_hover_hue\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"background_overlay_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]},\"border_hover_transition\":{\"unit\":\"px\",\"size\":0.3,\"sizes\":[]}},\"elements\":[{\"id\":\"7400143\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div class=\\\"elementor-element-overlay\\\"><p style=\\\"font-weight: 300;\\\"><strong style=\\\"font-style: inherit; font-weight: 600;\\\">From Yelp Review<\\/strong><\\/p><p style=\\\"font-weight: 300;\\\">Carrie ( Dr. Gao\\u2019s assistant) was wonderful, she was very caring and professional. She worked on me most days. And even came in on her day off! I went to my appointment very skeptical but after my treatments and results\\u2026 I\\u2019m a private person, so I\\u2019m intentionally not mentioning what all my problems were, but they did help us bring 2 lives is this world, through fertility treatments and acupuncture and guidance from Carrie and Dr. GAO\\u2026.we finally became pregnant after 7 yrs of trying\\u2026 I\\u2019m so lucky and grateful I found them\\u2026thank you so much for helping our little family grow..you guys have blessed us with the greatest gifts I could ever dream of having.. our 2 little ones.<\\/p><\\/div>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"75\",\"bottom\":\"0\",\"left\":\"75\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_size\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"drop_cap_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"drop_cap_border_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_tablet\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"drop_cap_typography_line_height_mobile\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65f0542\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"_background_hover_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"_background_hover_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_background_hover_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_hover_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_background_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_border_hover_transition\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_x_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_x_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"_offset_y_end_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_offset_y_end_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-1\"},\"elements\":[{\"id\":\"6bd8ed8f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fc252cc\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#38c695\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5158665c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":\"\"},\"icon_size\":{\"unit\":\"px\",\"size\":130},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#38c695\",\"secondary_color\":\"#38c695\",\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"2e2b3632\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"45063d28\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#38c695\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#38c695\",\"button_hover_border_color\":\"#38c695\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#38c695\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2ac03115\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-2\"},\"elements\":[{\"id\":\"6fe5585c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e079b6a\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#fc5f45\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6556880c\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"359377f0\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"500\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":\"39cd5583\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#fc5f45\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#fc5f45\",\"button_hover_border_color\":\"#fc5f45\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#fc5f45\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"34045a19\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"_element_id\":\"alexis-pricing-column-width-3\"},\"elements\":[{\"id\":\"4442b163\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"header_size\":\"h5\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":33},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412bbb3d\",\"elType\":\"widget\",\"settings\":{\"view\":\"framed\",\"icon\":\"fa fa-circle\",\"primary_color\":\"#b27cf5\",\"size\":{\"unit\":\"px\",\"size\":110},\"icon_padding\":{\"unit\":\"px\",\"size\":0},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"_border_color\":\"#38c695\",\"_border_radius\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"6780432f\",\"elType\":\"widget\",\"settings\":{\"icon\":\"\",\"title_text\":\"$125\",\"description_text\":\"Per Month\",\"title_size\":\"h4\",\"icon_space\":{\"unit\":\"px\",\"size\":0},\"icon_size\":{\"unit\":\"px\",\"size\":0},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0},\"title_color\":\"#ffffff\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"title_typography_font_weight\":\"400\",\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"description_typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-125\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"title_typography_text_transform\":\"none\",\"title_typography_font_style\":\"normal\",\"title_typography_text_decoration\":\"none\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"description_typography_text_transform\":\"none\",\"description_typography_font_style\":\"normal\",\"description_typography_text_decoration\":\"none\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"description_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-box\"},{\"id\":\"62a6e961\",\"elType\":\"widget\",\"settings\":{\"title\":\"\",\"subtitle\":\"\",\"price_tag_text\":\"\",\"price_tag_currency\":\"\",\"price_tag_period\":\"\",\"feature_list\":[{\"accent\":\"800GB\",\"text\":\" Online Storage\",\"_id\":\"9f2c91e\",\"feature_icon\":\"\"},{\"accent\":\"20\",\"text\":\"Files Per Day\",\"_id\":\"587e4df\",\"feature_icon\":\"\"},{\"accent\":\"2TB\",\"text\":\" Monthly Bandwidth\",\"_id\":\"8278336\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Secure Platform\",\"_id\":\"e730c41\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"Fast & Reliable\",\"_id\":\"c1de0d7\",\"feature_icon\":\"\"},{\"accent\":\"\",\"text\":\"24\\/7 Customer Support\",\"_id\":\"de05510\",\"feature_icon\":\"\"}],\"button_text\":\"\",\"button_link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\"},\"button_section_bg_background\":\"classic\",\"button_hover_text_color\":\"#38c695\",\"button_hover_bg_color\":\"#ffffff\",\"title_tag\":\"h5\",\"plan_title_color\":\"#313131\",\"plan_title_typography_typography\":\"custom\",\"plan_title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"plan_title_typography_font_weight\":\"normal\",\"plan_title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"plan_subtitle_color\":\"#313131\",\"pricing_section_bg_background\":\"classic\",\"currency_color\":\"#ffffff\",\"currency_typography_typography\":\"custom\",\"currency_typography_font_family\":\"Poppins\",\"currency_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"currency_typography_font_weight\":\"400\",\"price_text_color\":\"#ffffff\",\"price_typography_typography\":\"custom\",\"price_typography_font_family\":\"Poppins\",\"price_typography_font_size\":{\"unit\":\"px\",\"size\":25},\"price_typography_font_weight\":\"400\",\"period_color\":\"#ffffff\",\"price_sub_text_typography_typography\":\"custom\",\"price_sub_text_typography_font_family\":\"Poppins\",\"price_sub_text_typography_font_size\":{\"unit\":\"px\",\"size\":13},\"price_sub_text_typography_font_weight\":\"400\",\"price_sub_text_typography_line_height\":{\"unit\":\"px\",\"size\":8},\"features_accented_text_color\":\"#616161\",\"features_accented_typography_typography\":\"custom\",\"features_accented_typography_font_family\":\"Poppins\",\"features_accented_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_accented_typography_font_weight\":\"500\",\"features_accented_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"features_text_color\":\"#616161\",\"features_features_typography_typography\":\"custom\",\"features_features_typography_font_family\":\"Poppins\",\"features_features_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"features_features_typography_font_weight\":\"400\",\"features_features_typography_line_height\":{\"unit\":\"px\",\"size\":37},\"_css_classes\":\"alexis-pricing\",\"plan_title_typography_font_family\":\"Poppins\",\"plan_title_typography_text_transform\":\"none\",\"plan_title_typography_font_style\":\"normal\",\"plan_title_typography_text_decoration\":\"none\",\"plan_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"currency_typography_text_transform\":\"none\",\"currency_typography_font_style\":\"normal\",\"currency_typography_text_decoration\":\"none\",\"currency_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"currency_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_typography_text_transform\":\"none\",\"price_typography_font_style\":\"normal\",\"price_typography_text_decoration\":\"none\",\"price_typography_line_height\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"price_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"price_sub_text_typography_text_transform\":\"none\",\"price_sub_text_typography_font_style\":\"normal\",\"price_sub_text_typography_text_decoration\":\"none\",\"price_sub_text_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_accented_typography_text_transform\":\"none\",\"features_accented_typography_font_style\":\"normal\",\"features_accented_typography_text_decoration\":\"none\",\"features_accented_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"features_features_typography_text_transform\":\"none\",\"features_features_typography_font_style\":\"normal\",\"features_features_typography_text_decoration\":\"none\",\"features_features_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"obfx-pricing-table\"},{\"id\":624,\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"align\":\"center\",\"size\":\"xl\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":46},\"button_text_color\":\"#b27cf5\",\"background_color\":\"rgba(0,0,0,0)\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#b27cf5\",\"button_hover_border_color\":\"#b27cf5\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"border_color\":\"#b27cf5\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_font_weight\":\"normal\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"42c9421d\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"52143f39\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":10,\"color\":\"rgba(0,0,0,0.2)\"},\"box_shadow_box_shadow_position\":\"inset\"},\"elements\":[{\"id\":\"e1737f3\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"why-us\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4d4be80f\",\"elType\":\"widget\",\"settings\":{\"title\":\"07\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-30}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"570572e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Select Us?\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"265459b9\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ae5320\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"baae1c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"3d31406c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":163,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-business-growth-1.png\"},\"title_text\":\"Business<br>Growth\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10},\"_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\":\"image-box\"},{\"id\":\"550d0e4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"366b12db\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"72c4b85c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-unlimited-revisions2.png\"},\"title_text\":\"Unlimited<br>Revisions\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"div\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"eda63d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1deb560a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"370769bf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":193,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-ultimate-perfection-1.png\"},\"title_text\":\"Ultimate<br>Perfection\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"50061f0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7fabc90e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4eb3c4fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"784412fb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":194,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-smart-experience1.png\"},\"title_text\":\"Smart<br>Experience\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"51efb023\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Success scrum project funding marketing seed money prototype innovator direct hackathon android angel investor.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e9132ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false}},\"elements\":[{\"id\":\"388bd34e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":195,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-strict-deadline1.png\"},\"title_text\":\"Strict<br>Deadline\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"4d047daa\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Technology founders churn rate niche market long tail release iteration burn rate backing. Churn rate accelerator.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"644bb5a0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"70\",\"left\":\"25\",\"isLinked\":false},\"space_between_widgets\":0},\"elements\":[{\"id\":\"3fe9a264\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":196,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/neve-reputed-copmany1.png\"},\"title_text\":\"Reputed<br>Company\",\"description_text\":\"\",\"position\":\"left\",\"title_size\":\"span\",\"image_space\":{\"unit\":\"px\",\"size\":0},\"image_size\":{\"unit\":\"%\",\"size\":28},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"image_space_mobile\":{\"unit\":\"px\",\"size\":10},\"image_space_tablet\":{\"unit\":\"px\",\"size\":10}},\"elements\":[],\"widgetType\":\"image-box\"},{\"id\":\"201545fd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Deployment ownership non-disclosure agreement vesting period crowdfunding success influencer partnership.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29ddfc3e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"150\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"195e9aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":59.911,\"content_position\":\"center\",\"_inline_size_tablet\":60,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7e8d2973\",\"elType\":\"widget\",\"settings\":{\"title\":\"Start your journey with us now\",\"header_size\":\"h4\",\"title_color\":\"#313131\",\"align\":\"right\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"30ca0c62\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40.089,\"content_position\":\"center\",\"_inline_size_tablet\":40,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"32f38d5c\",\"elType\":\"widget\",\"settings\":{\"text\":\"get started\",\"background_color\":\"#f64a2d\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16},\"typography_font_weight\":\"500\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_text_color\":\"#ffffff\",\"hover_color\":\"#ffffff\",\"button_background_hover_color\":\"#f34123\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"align_mobile\":\"center\",\"align\":\"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}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65d89d0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"74201267\",\"elType\":\"column\",\"settings\":{\"_column_size\":100},\"elements\":[{\"id\":\"3a091d0\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"blog\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"bb5c40e\",\"elType\":\"widget\",\"settings\":{\"title\":\"08\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f602749\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19ceb500\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7db6271e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"gap\":\"no\",\"animation\":\"fadeInUp\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6edbc34e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"13\",\"bottom\":\"0\",\"left\":\"13\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"320a1dc7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"_background_background\":\"classic\",\"image_size\":\"full\",\"width_tablet\":{\"unit\":\"%\",\"size\":100}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5c9167b5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"<br>Quid dubitas igitur mutare principia naturae\",\"description_text\":\"Traction seed money infographic accelerator pivot value proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership business-to-consumer iteration market analytics paradigm proposition ownership. Needed feebly dining oh talked wisdom oppose at.\",\"image_space\":{\"unit\":\"px\",\"size\":\"\"},\"image_size\":{\"unit\":\"%\",\"size\":100},\"text_align\":\"left\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":8},\"title_color\":\"#313131\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":20},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":33},\"description_color\":\"#616161\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_padding\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"20\",\"bottom\":\"27\",\"left\":\"20\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#ffffff\",\"_border_border\":\"solid\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"#fc5f45\",\"text_align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4f562011\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3db4ff8c\",\"elType\":\"widget\",\"settings\":{\"grid_style\":\"list\",\"grid_items\":3,\"grid_columns\":\"1\",\"grid_title_tag\":\"h6\",\"grid_meta_remove_icons\":\"yes\",\"grid_content_length\":34,\"grid_content_default_btn\":\"\",\"grid_content_default_btn_text\":\"Read\",\"grid_items_style_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"35\",\"bottom\":\"23\",\"left\":\"35\",\"isLinked\":false},\"grid_items_style_background_background\":\"classic\",\"grid_items_style_background_color\":\"#ffffff\",\"grid_title_style_typography_typography\":\"custom\",\"grid_title_style_typography_font_family\":\"Poppins\",\"grid_title_style_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"grid_title_style_typography_font_weight\":\"500\",\"grid_title_style_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"grid_title_style_color\":\"#313131\",\"grid_meta_style_typography_typography\":\"custom\",\"grid_meta_style_typography_font_family\":\"Poppins\",\"grid_meta_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_meta_style_typography_font_weight\":\"400\",\"grid_meta_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_meta_style_color\":\"#fc5f45\",\"grid_content_style_typography_typography\":\"custom\",\"grid_content_style_typography_font_family\":\"Poppins\",\"grid_content_style_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"grid_content_style_typography_font_weight\":\"400\",\"grid_content_style_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"grid_content_style_color\":\"#616161\",\"grid_button_style_normal_text_color\":\"#ffffff\",\"grid_items_style_box_shadow_box_shadow_type\":\"yes\",\"grid_items_style_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":-3,\"blur\":0,\"spread\":0,\"color\":\"#fc5f45\"},\"grid_items_style_box_shadow_box_shadow_position\":\"inset\",\"grid_columns_tablet\":\"2\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"grid_image_height\":{\"unit\":\"px\",\"size\":120},\"grid_meta_hide\":\"yes\",\"grid_image_hide\":\"yes\",\"grid_style_rows_margin\":{\"unit\":\"px\",\"size\":25},\"_element_id\":\"alexis-post-grid\"},\"elements\":[],\"widgetType\":\"obfx-posts-grid\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"63fb1894\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"125\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"65\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"46005927\",\"elType\":\"column\",\"settings\":{\"_column_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\":false}},\"elements\":[{\"id\":\"6176377\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"newsletter\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"4dbc462c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Subscribe to Newsletter\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30},\"typography_font_weight\":\"normal\",\"typography_line_height\":{\"unit\":\"px\",\"size\":48},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-1},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bcff59\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"bf761ba\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"bf34e92\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"30\",\"isLinked\":false},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"33\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"33\"}],\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"350\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"190\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"mark_required_color\":\"rgba(255,255,255,0)\",\"provider\":\"mailchimp\",\"access_key\":\"1\",\"list_id\":\"1\",\"_background_background\":\"classic\",\"field-text-padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"200bdcf1\",\"elType\":\"widget\",\"settings\":{\"submit_label\":\"Subscribe now\",\"align_submit_mobile\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":0},\"mark_required_color\":\"rgba(0,0,0,0)\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":27},\"field-text-padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"field_text_color\":\"#616161\",\"field_background_color\":\"#f7f7f7\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"field_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"field_focus_border_color\":\"#fc5f45\",\"button_background_color\":\"#fc5f45\",\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_color\":\"#fc5f45\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"25\",\"bottom\":\"10\",\"left\":\"25\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"form_fields\":[{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"required\",\"placeholder\":\"Enter your email\",\"field_width\":\"100\",\"_id\":\"ab33f14\",\"field_width_tablet\":\"50\",\"field_width_mobile\":\"100\"}],\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"row_gap\":{\"unit\":\"px\",\"size\":20},\"provider\":\"sendinblue\",\"access_key\":\"1\",\"list_id\":\"1\",\"align_submit\":\"center\",\"align_submit_tablet\":\"center\",\"align_field_text_mobile\":\"center\",\"_element_id\":\"nv-mobile-subscribe\",\"button_hover_border_color\":\"#f34123\"},\"elements\":[],\"widgetType\":\"content_form_newsletter\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"175239c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"id\":483,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_size\":\"cover\",\"background_color_stop\":{\"unit\":\"%\",\"size\":35},\"background_color_b\":\"rgba(255,255,255,0)\",\"background_color_b_stop\":{\"unit\":\"%\",\"size\":35},\"background_position\":\"top center\",\"background_attachment\":\"fixed\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#262732\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":5},\"background_overlay_color_b\":\"rgba(242,41,91,0)\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":50},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.85}},\"elements\":[{\"id\":\"14ce9d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"45762fa\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"contact\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"6ebfa1ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"9\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e8c2c75\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get in Touch\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30ff963e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#ffffff\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d50d4d8\",\"elType\":\"widget\",\"settings\":{\"form_fields\":[{\"key\":\"name\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Name\",\"field_width\":\"50\",\"_id\":\"8db40a6\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"email\",\"type\":\"email\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your Email\",\"field_width\":\"50\",\"_id\":\"e7dd205\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Your Subject\",\"field_width\":\"50\",\"_id\":\"daaa28f\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"phone\",\"type\":\"text\",\"label\":\"\",\"requirement\":\"optional\",\"placeholder\":\"Project Budget\",\"field_width\":\"50\",\"_id\":\"4c5736e\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"},{\"key\":\"message\",\"type\":\"textarea\",\"label\":\"\",\"requirement\":\"\",\"placeholder\":\"Your message\",\"field_width\":\"100\",\"_id\":\"20f6006\",\"field_width_tablet\":\"\",\"field_width_mobile\":\"\"}],\"to_send_email\":\"contact@neve.com\",\"submit_label\":\"send message\",\"align_submit\":\"center\",\"column_gap\":{\"unit\":\"px\",\"size\":30},\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Poppins\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"field_typography_font_weight\":\"400\",\"field_typography_line_height\":{\"unit\":\"px\",\"size\":30},\"align_field_text\":\"center\",\"field_border_color\":\"#efefef\",\"field_border_style\":\"solid\",\"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},\"field_focus_border_color\":\"#fc5f45\",\"field_focus_border_style\":\"solid\",\"field_focus_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"button_background_color\":\"#fc5f45\",\"button_text_color\":\"#ffffff\",\"button_typography_typography\":\"custom\",\"button_typography_font_family\":\"Poppins\",\"button_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"button_typography_font_weight\":\"500\",\"button_typography_line_height\":{\"unit\":\"px\",\"size\":50},\"button_border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"button_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"button_background_hover_color\":\"#f34123\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"150\",\"bottom\":\"0\",\"left\":\"150\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"field_background_color\":\"#fefefe\",\"label_spacing\":{\"unit\":\"px\",\"size\":\"\"},\"_element_id\":\"nv-contact-form\"},\"elements\":[],\"widgetType\":\"content_form_contact\"},{\"id\":\"4329647d\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"5114dc3b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"3e75ceda\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"3e2197e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"619c8a79\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"7afb2543\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"4fa205ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"24d92181\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"25\",\"bottom\":\"45\",\"left\":\"25\",\"isLinked\":false},\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"content_position\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"71152544\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c1210\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"text-align: center;\\\">\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin_mobile\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4335542d\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div style=\\\"vertical-align: bottom; width: 25% float: left\\\">\\t\\t\\t<div style=\\\"border-bottom: 3px solid #fc5f45; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #38c695; width: 25%;\\r\\n float: left\\\"><\\/div>\\t\\t\\t\\t\\t<div style=\\\"border-bottom: 3px solid #b27cf5; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n\\t\\t<div style=\\\"border-bottom: 3px solid #feb960; width: 25%;\\r\\n float: left\\\"><\\/div>\\r\\n<\\/div>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation_duration\":\"slow\",\"hide_desktop\":\"hidden-desktop\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"146e154a\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"background_background\":\"classic\",\"background_color\":\"rgba(38,39,50,0.85)\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\"},\"elements\":[{\"id\":\"62898bc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"45\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"308ee58f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Here for you\",\"description_text\":\"Call us 24\\/7. We are there for your support\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#fc5f45\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"62990356\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d04092e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"About us\",\"description_text\":\"Res enim fortasse verae, certe graves.\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#38c695\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4bdfcc7c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"content_position\":\"center\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1af37b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"\",\"id\":\"\"},\"title_text\":\"Where to find us\",\"description_text\":\"42 Boulevard, California, number 23\",\"title_size\":\"h6\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":28},\"title_color\":\"#b27cf5\",\"title_typography_typography\":\"custom\",\"title_typography_font_family\":\"Poppins\",\"title_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"title_typography_font_weight\":\"500\",\"title_typography_line_height\":{\"unit\":\"px\",\"size\":26},\"description_color\":\"#ffffff\",\"description_typography_typography\":\"custom\",\"description_typography_font_family\":\"Poppins\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"px\",\"size\":27}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4995f39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"45\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"204e02e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Keep in touch\",\"link\":{\"url\":\"Alexis LLC UK.\",\"is_external\":\"\",\"nofollow\":\"\"},\"header_size\":\"h6\",\"title_color\":\"#feb960\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":26},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"01f1e5b\",\"elType\":\"widget\",\"settings\":{\"html\":\"<div>\\n    <a href=\\\"#\\\" class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-facebook.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-twitter.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-instagram.png\\\"><\\/a>\\n    <a href class=\\\"neve-social\\\"><img src=\\\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/11\\/neve-googleplus.png\\\"><\\/a>\\n     <style>\\n     .neve-social {margin-right: 10px;}\\n     .neve-social:hover {filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);     transition: all ease 0.25s;};\\n     <\\/style>\\n<\\/div>\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"250\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"65\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a05ccf5\",\"elType\":\"widget\",\"settings\":{\"html\":\"<style>\\r\\n\\/*Disable animations on table\\/mobile*\\/\\r\\n@media only screen and (max-width : 768px) {\\r\\n.animated, .animated.animated-slow {\\r\\n    -webkit-animation-duration: 0s;\\r\\n    animation-duration: 0s;\\r\\n}\\r\\n.fadeIn, .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {\\r\\n        animation-name: none;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Fix flexbox IE11 width issue*\\/\\r\\n@media only screen and (min-width : 991px) {\\r\\n.nv-ie-width .elementor-column-wrap {\\r\\n    min-width: 452px;\\r\\n}\\r\\n}\\r\\n\\r\\n\\/*Video section - Remove link color on hover*\\/\\r\\n    #alexis-video-section a:hover, #alexis-video-section a:focus {\\r\\n        color: #fff;\\r\\n    }\\r\\n    \\r\\n\\/*Pricing section - Fixes*\\/\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-pricing-column-width-3 {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n@media only screen and (max-width: 1200px) and (min-width: 1000px) {\\r\\n    #alexis-pricing-column-width-1 .elementor-element-populated {\\r\\n        margin: 0 0 0 -5px;\\r\\n    }\\r\\n    #alexis-pricing-column-width-2 .elementor-element-populated {\\r\\n        margin: 0;\\r\\n    }\\r\\n    #alexis-pricing-column-width-3 .elementor-element-populated {\\r\\n        margin: 0 0 0 5px;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Blog section: fix for mobile*\\/\\r\\n\\r\\n@media only screen and (max-width: 1000px) and (min-width: 480px) {\\r\\n    #alexis-post-grid .obfx-grid-container .obfx-grid-wrapper {\\r\\n        margin: 0 auto;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Center subscribe button on mobile*\\/\\r\\n@media only screen and (max-width : 468px) {\\r\\n    #nv-mobile-subscribe .content-form .submit-form {\\r\\n        width: initial;\\r\\n    }\\r\\n}\\r\\n\\r\\n\\/*Add space to contact form submit button*\\/\\r\\n#nv-contact-form .content-form .submit-form {\\r\\n    margin-top: 20px;\\r\\n}\\r\\n\\r\\n\\/*Center the Form succes\\/error notice*\\/\\r\\n    #nv-contact-form .content-form-notice {\\r\\n    margin: 0 auto;\\r\\n}\\r\\n<\\/style>\"},\"elements\":[],\"widgetType\":\"html\"}],\"isInner\":false}],\"isInner\":false}]'),(1108,896,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1064,888,'_wp_page_template','page-templates/template-pagebuilder-full-width.php'),(1070,889,'_elementor_template_type','section'),(1071,889,'_elementor_edit_mode','builder'),(1072,890,'_elementor_template_type','page'),(1073,890,'_elementor_edit_mode','builder'),(1074,889,'_wp_page_template','default'),(1075,889,'_elementor_data','[{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1076,891,'_elementor_template_type','page'),(1077,891,'_elementor_edit_mode','builder'),(1078,891,'_wp_page_template','default'),(1079,891,'_elementor_data','[{\"id\":\"538b1a0b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"150\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5c8940d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1769c69\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"more-features\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"c84ac7d\",\"elType\":\"widget\",\"settings\":{\"title\":\"04\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"101449f6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Neve in detail\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2949e172\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirements and let you customize Neve however you wish:\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d359a3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"125\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"181a9df5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#fc5f45\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"38\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ad60e3a\",\"elType\":\"widget\",\"settings\":{\"title\":\"1\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a22abe8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Super fast\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a0e361f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve loads in less than a second, leaving you space to add additional plugins to your site and make it 100% yours.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3c525bbe\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"69f77860\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":182,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-5.jpg\"},\"image_size\":\"full\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2b4d59\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-48\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"591cb138\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"1b44dca6\",\"elType\":\"widget\",\"settings\":{\"title\":\"2\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"align\":\"left\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1146a21a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Optimized for mobile\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e8a2ea6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Neve adapts to any device and always delivers a great user experience. It\'s also optimized for AMP, helping you remain on Google\'s good side.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74d3d879\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47372f34\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":183,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-4.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"33330dfd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"322c845a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#b27cf5\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"108\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"270\",\"bottom\":\"-325\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"63630398\",\"elType\":\"widget\",\"settings\":{\"title\":\"3\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1364b989\",\"elType\":\"widget\",\"settings\":{\"title\":\"Minimalist design\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2f2605\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The base design of the theme is minimalist, which leaves you room to add some visual flair via plugins or page builders.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5d4df345\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7571a814\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":184,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-6.jpg\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"25015e26\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-45\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"43381322\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"03\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#feb960\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":25,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"margin\":{\"unit\":\"px\",\"top\":\"-30\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"670\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"40\",\"bottom\":\"25\",\"left\":\"40\",\"isLinked\":false},\"z_index\":1,\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"-325\",\"left\":\"270\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"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\":\"38\",\"left\":\"0\",\"isLinked\":false},\"css_classes\":\"nv-ie-width\"},\"elements\":[{\"id\":\"76162c24\",\"elType\":\"widget\",\"settings\":{\"title\":\"4\",\"header_size\":\"div\",\"title_color\":\"#efefef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"290\",\"bottom\":\"-65\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":0,\"_background_background\":\"classic\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"38\",\"bottom\":\"-45\",\"left\":\"38\",\"isLinked\":false},\"align\":\"left\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"-25\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21a83f4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"SEO-ready\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":25},\"typography_font_weight\":\"400\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40},\"header_size\":\"h4\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"80\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"38\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12da6ad0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The source code used in Neve is structured in a way that Google understands and appreciates, thus helping your site rank. It\'s also compatible with your favorite SEO plugins.<\\/p>\",\"text_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":27},\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4376d015\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-280\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-135\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50049459\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":162,\"url\":\"https:\\/\\/test.evergreenwellness.com\\/wp-content\\/uploads\\/2018\\/12\\/nv-1.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"px\",\"size\":540},\"width_tablet\":{\"unit\":\"px\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1080,889,'_elementor_version','2.5.13'),(1081,889,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1083,889,'_edit_lock','1555273336:1'),(1112,896,'_elementor_version','2.5.13'),(1113,896,'_elementor_page_settings','a:12:{s:21:\"background_color_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:23:\"background_color_b_stop\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:25:\"background_gradient_angle\";a:3:{s:4:\"unit\";s:3:\"deg\";s:4:\"size\";i:180;s:5:\"sizes\";a:0:{}}s:15:\"background_xpos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_xpos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:15:\"background_ypos\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:22:\"background_ypos_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"background_bg_width\";a:3:{s:4:\"unit\";s:1:\"%\";s:4:\"size\";i:100;s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:26:\"background_bg_width_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}}'),(1094,893,'_elementor_template_type','section'),(1095,893,'_elementor_edit_mode','builder'),(1096,894,'_elementor_template_type','page'),(1097,894,'_elementor_edit_mode','builder'),(1098,893,'_wp_page_template','default'),(1099,893,'_elementor_data','[{\"id\":\"7b14cd87\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#f7f7f7\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4047c053\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4751858\",\"elType\":\"widget\",\"settings\":{\"anchor\":\"pricing\"},\"elements\":[],\"widgetType\":\"menu-anchor\"},{\"id\":\"73859da4\",\"elType\":\"widget\",\"settings\":{\"title\":\"05\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"rgba(224,224,224,0.3)\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":273},\"typography_font_weight\":\"700\",\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-150\",\"left\":\"0\",\"isLinked\":false},\"_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_border_color\":\"rgba(0,0,0,0.1)\",\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":-25}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c4ff79\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing Table.\",\"align\":\"center\",\"title_color\":\"#313131\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Libre Baskerville\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"capitalize\",\"typography_line_height\":{\"unit\":\"px\",\"size\":75},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"82\",\"bottom\":\"0\",\"left\":\"82\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31},\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":46},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5b6c7c49\",\"elType\":\"widget\",\"settings\":{\"title\":\"We understand your requirement and provide quality works.\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#616161\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18},\"typography_font_weight\":\"400\",\"typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"typography_text_transform\":\"none\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"350571dd\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"wider\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"447c91e9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#38c695\",\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":-5,\"color\":\"rgba(0,0,0,0.5)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0